Parsing JSON Data from PHP Using jQuery (ajax)
have been studying parsing JSON from PHP using AJAX to display it in
the client side and jQuery had been a great help to me. Here is a very
simple code in parsing JSON using jQuery that i made.
tablejsondata.php
This file makes the request to a php file and displays the returned data into a table.
<html>
<head>
<title>Parsing JSON from PHP Using jQuery</title>
<script src="http://code.jquery.com/jquery-latest.js" type="text/javascript">
</script>
</head>
<body>
<a href="#" id="loaduserdata">User Data</a>
<table id="userdata" border="1">
<thead>
<th>First Name</th>
<th>Last Name</th>
<th>Email Address</th>
<th>City</th>
</thead>
<tbody></tbody>
</table>
<script>
$(document).ready(function(){
});
$("#loaduserdata").click(function(){
$("#userdata tbody").html("");
$.getJSON(
"jsondata
.php
",
function(data){
$.each(data.userdata, function(i,user){
var tblRow =
"<tr>"
+"<td>"+user.first+"</td>"
+"<td>"+user.last+"</td>"
+"<td>"+user.email+"</td>"
+"<td>"+user.city+"</td>"
+"</tr>"
$(tblRow).appendTo("#userdata tbody");
});
}
);
});
</script>
</body>
</html>
jsondata.php
This is the file that contains the JSON data.
<?php
$json = '{
"userdata": [
{
"first":"Ciaran",
"last":"Huber",
"email":"elementum.purus@utdolordapibus.edu",
"city":"Mayagüez"
},
{
"fi
Ïà¹ØÎĵµ£º
PHPÏÖÔÚÍÆ³ö5.3.0°æ±¾ÁË£¬²»¹ýÏÂÔØµÄʱºòÓм¸¸ö²»Í¬°æ±¾Ñ¡Ôñ¡£ÄǾÍÊÇVC6 X86ºÍVC9 X86¡£
VC6ÊÇʲô£¿
VC6¾ÍÊÇlegacy Visual Studio 6 compiler£¬¾ÍÊÇʹÓÃÕâ¸ö±àÒëÆ÷±àÒëµÄ¡£
VC9ÊÇʲô£¿
VC9¾ÍÊÇthe Visual Studio 2008 compiler£¬¾ÍÊÇÓÃ΢ÈíµÄVS±à¼Æ÷±àÒëµÄ¡£
ÄÇÎÒÃÇÈçºÎÑ¡ÔñÏÂÔØÄĸö°æ±¾µÄPHPÄØ£¿
Èç¹ûÄãÊÇÔÚwindo ......
Perl¡¢PHP¡¢ASP¡¢JSP¼¼Êõ±È½Ï
±¾ÎĽ«¶ÔĿǰ×î³£ÓõÄËÄÖÖ¶¯Ì¬ÍøÒ³ÓïÑÔPerl£¨Practical Extraction and Report Language£©¡¢PHP£¨Hypertext Preprocessor£©¡¢ASP£¨Active Server Pages£©¡¢JSP£¨JavaServer Pages£©½øÐÐһЩ¼¼ÊõÐԵıȽϡ£
¡¡¡¡Perl
¡¡¡¡Perl£¨Practical Extraction and Report Language£©ÊÇÒ»ÖֺܹÅÀϵĽű ......
À´Ô´ÓÚ£ºhttp://news.csdn.net/a/20100205/216909.html
¾Ý¡¶Å¦Ô¼Ê±±¨¡·ÍøÕ¾±¨µÀ
£¬¶ÁÐ´Íø¼ÇÕßÓëPHPµÄ´´ÔìÕßRasmus LerdorfÁªÏµ£¬Ñ¯ÎÊËû¶ÔFacebook¸Õ¸Õ¿ªÔ´µÄPHPÓÅ»¯ÏîÄ¿HipHopÓкο´·¨¡£LerdorfÔÚÓʼþÖÐ˵£¬ÕâÊÇÒ»¸öºÜ¿áµÄÏîÄ¿£¬¿Ï¶¨»á³ÉÎªÄ³Ð©ÍøÕ¾ºÜºÃµÄÑ¡Ôñ¡£
µ«ÊÇ£¬Ëû½ÓÏÂÀ´Ëµ£¬¶ÔÓÚÐí¶àWebÓ¦ÓÃÀ´Ëµ£¬Ö´ÐÐËٶȲ¢²»ÊÇÖ ......
À´Ô´ÓÚ£ºhttp://news.csdn.net/a/20100201/216819.html
CSDN±¨µÀ
SDTimes¸ß¼¶±à¼Alex HandyÔÚ²©¿Í
Öб¬ÁÏ£¬ÉÏÖÜFacebookÑûÇëÁËPHPºËÐÄÍŶӵ½¹«Ë¾ÌÖÂÛËûÃǵÄÐÂÏîÄ¿£º´ÓÍ·ÖØÐ´µÄPHPÔËÐп⡣ÖܶþËûÃǽ«Õýʽ·¢²¼Õâ¸öÏîÄ¿£¬²¢¿ªÔ´¡£
HandyÏàÐÅ£¬ÕâÊÇÁ½ÄêǰFacebookÕÐÀ¿µÄһλPHP¸ßÊÖËùΪ¡£
µ«Ò²ÓÐÍøÓÑÔÚ²©¿ÍÏÂÁôÑÔ˵£¬Fac ......
http://topic.csdn.net/t/20040927/15/3412922.html
http://www.docin.com/p-23414672.html
http://www.qqread.com/php/n652282101.html
http://www.51testing.com/?uid-65519-action-viewspace-itemid-142987
1 apacheÅäÖÃÎļþhttpd.conf×îááÌí¼Ó:
LoadModule php6_module "c:/php6/php6apac ......