使用 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中文网其他相关文章!