插入以下 PHP 代码后,我所有带有 Ajax 函数的 jQuery 都停止工作,
<?php
//includes data base configuration file
include_once "config.php";
$order = "SELECT * FROM tblUser";
$result = mysql_query($order);
if(!$result){
//if result not success exit from script
die("Error:".mysql_error());
}
//more codes here...
?>