告诉我一个很好的例子 如何使用ajax
删除记录表格数据库表答案 0 :(得分:0)
使用代码编写PHP以从数据库中删除记录。我们说delete.php
(从here提取的例子):
<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("my_db", $con);
mysql_query("DELETE FROM Persons WHERE LastName='Griffin'");
mysql_close($con);
?>
然后,使用Ajax GET
或POST
delete.php
。一个例子是:
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
} else {// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET","http://yourdomain.com/delete.php",true);
xmlhttp.send();
如果您需要delete.php
拨打open
xmlhttp
,则可以发送参数。以here为例说明如何执行此操作。
正如@Davide在评论中所建议的那样,使用POST
命令代替GET
来执行此类操作可能更好。