使用Ajax函数的jQuery在插入PHP代码后停止工作

时间:2013-07-12 05:47:24

标签: php ajax

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

0 个答案:

没有答案