javascript - How can I get all values of a mysql table in JSON from a php script? - Stack Overflow

This is php script that fetches a table values from mysql (one row). & echoes it as JSON<?php$

This is php script that fetches a table values from mysql (one row). & echoes it as JSON

<?php  
      $username = "user";  
      $password = "********";  
      $hostname = "localhost";  
      $dbh = mysql_connect($hostname, $username, $password) or die("Unable to 
      connect to MySQL");  
      $selected = mysql_select_db("spec",$dbh) or die("Could not select first_test");  
      $query = "SELECT * FROM user_spec";  
      $result=mysql_query($query);     
      $outArray = array(); 
      if ($result) { 
      while ($row = mysql_fetch_assoc($result)) $outArray[] = $row; 
       } 
      echo json_encode($outArray);  
?> 

this is HTML file to receive & print json data.
src=".4.2/jquery.min.js"> //$('document').ready(function() {

    function Preload() {
    $.getJSON("http://localhost/conn_mysql.php", function(jsonData){  
    $.each(jsonData, function(i,j)
    { alert(j.options);});
    });} 

// });
    </script></head>

    <body onLoad="Preload()">
    </body>

</html> >

This is php script that fetches a table values from mysql (one row). & echoes it as JSON

<?php  
      $username = "user";  
      $password = "********";  
      $hostname = "localhost";  
      $dbh = mysql_connect($hostname, $username, $password) or die("Unable to 
      connect to MySQL");  
      $selected = mysql_select_db("spec",$dbh) or die("Could not select first_test");  
      $query = "SELECT * FROM user_spec";  
      $result=mysql_query($query);     
      $outArray = array(); 
      if ($result) { 
      while ($row = mysql_fetch_assoc($result)) $outArray[] = $row; 
       } 
      echo json_encode($outArray);  
?> 

this is HTML file to receive & print json data.
src="http://ajax.googleapis./ajax/libs/jquery/1.4.2/jquery.min.js"> //$('document').ready(function() {

    function Preload() {
    $.getJSON("http://localhost/conn_mysql.php", function(jsonData){  
    $.each(jsonData, function(i,j)
    { alert(j.options);});
    });} 

// });
    </script></head>

    <body onLoad="Preload()">
    </body>

</html> >
Share Improve this question edited Oct 20, 2010 at 19:34 XCeptable asked Oct 19, 2010 at 19:44 XCeptableXCeptable 1,2676 gold badges28 silver badges53 bronze badges 2
  • did you ask this already? stackoverflow./questions/3963057/… – Phill Pafford Commented Oct 19, 2010 at 19:48
  • no, code is same about which I ask other early things but now with some clarity & addition in code, I have new question that is ahead from previous ones. But if there is something special to care about it, kindly let me know. – XCeptable Commented Oct 19, 2010 at 19:58
Add a ment  | 

3 Answers 3

Reset to default 8

Your PHP needs to actually put all the rows together:

$query = "SELECT * FROM user_spec"; 
$result=mysql_query($query);    
$outArray = array();
if ($result) {
  while ($row = mysql_fetch_assoc($result)) $outArray[] = $row;
}
echo json_encode($outArray);

Your Javascript needs to look at each of the rows..

$.getJSON("/whatever.php", function(jsonData) { 
   for (var x = 0; x < jsonData.length; x++) {
      alert(jsonData[x].options);
   }
});

mysql_fetch_assoc will only return a single row from the database. You will need a loop to retrieve all rows:

$data = array();
while ($row = mysql_fetch_assoc($result)) {
    // add some or all of $row to the $data array
}
echo json_encode($data);
<?php 
    $username = "user"; 
    $password = "********"; 
    $hostname = "localhost"; 
    $dbh = mysql_connect($hostname, $username, $password) or die("Unable to connect 
         to MySQL"); 
    $selected = mysql_select_db("spec",$dbh) or die("Could not select first_test"); 
    $query = "SELECT * FROM user_spec"; 
    $result=mysql_query($query);

    $_ResultSet = array();

    while ($row = mysql_fetch_assoc($result)) {
       $_ResultSet[] = $row;
    }
       echo json_encode($_ResultSet); 
?>

and your jQuery would looks like :

$.getJSON("/yourscript.php", function(data) {
    $.each(data, function(i, j) {
        // use: j.columnName
    });
});

Good luck

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743677351a4488790.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信