我插入以下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...
?>