使用jQuery Ajax 從MySQL 擷取資料
問題:
解決方案:
要使用 jQuery Ajax 有效地從 MySQL 表中檢索數據,需要進行一些修改:
jQuery Ajax程式碼:
Display.php (擷取資料的PHP 程式碼):
<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>
附加說明:
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中文網其他相關文章!