使用 jQuery AJAX 從 MySQL 檢索資料
使用 jQuery AJAX 從 MySQL 資料庫擷取資料是 Web 開發中的常見任務。但是,在某些情況下,程式碼可能無法如預期般運作。
其中一個範例是嘗試透過 Ajax 呼叫顯示 MySQL 表中的記錄。提供的程式碼片段:
Records.php: <?php //database name = "simple_ajax" //table name = "users" $con = mysql_connect("localhost","root",""); $dbs = mysql_select_db("simple_ajax",$con); $result= mysql_query("select * from users"); $array = mysql_fetch_row($result); ?>
和
list.php: <html> <head> <script src="jquery-1.9.1.min.js"> <script> $(document).ready(function() { var response = ''; $.ajax({ type: "GET", url: "Records.php", async: false, success: function(text) { response = text; } }); alert(response); }); </script> </head> <body> <div>
未如預期運作。該問題可能在於使用了已棄用的 PHP 函數。若要解決此問題,程式碼以使用 mysqli_connect 取代 mysql_connect,請使用 mysqli_select_db 取代 mysql_select_db,使用 mysqli_query 取代 mysql_query。
此外,為了使用Ajax jQuery 檢索數據,可以使用以下程式碼片段:
<html> <script type="text/javascript" src="jquery-1.3.2.js"> </script> <script type="text/javascript"> $(document).ready(function() { $("#display").click(function() { $.ajax({ //create an ajax request to display.php type: "GET", url: "display.php", dataType: "html", //expect html to be returned success: function(response){ $("#responsecontainer").html(response); //alert(response); } }); }); }); </script> <body> <h3>Manage Student Details</h3> <table border="1" align="center"> <tr> <td> <input type="button">
對於MySQLi 連接,請使用以下指令碼:
<?php $con=mysqli_connect("localhost","root",""); ?>
顯示資料庫中的資料:
<?php include("connection.php"); mysqli_select_db("samples",$con); $result=mysqli_query("select * from student",$con); echo "<table border='1' > <tr'> <td align=center> <b>Roll No</b></td> <td align=center><b>Name</b></td> <td align=center><b>Address</b></td> <td align=center><b>Stream</b></td> <td align=center><b>Status</b></td>"; while($data = mysqli_fetch_row($result)) { echo "<tr>"; echo "<td align=center>$data[0]</td>"; echo "<td align=center>$data[1]</td>"; echo "<td align=center>$data[2]</td>"; echo "<td align=center>$data[3]</td>"; echo "<td align=center>$data[4]</td>"; echo "</tr>"; } echo "</table>"; ?>
以上是如何使用 jQuery AJAX 正確檢索 MySQL 資料並解決已棄用的 PHP 函數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!