ajax不能与mysqli联系?

时间:2015-03-29 21:45:01

标签: php jquery mysql ajax mysqli

我正在尝试与myqli联系进行ajax调用。 因为我正在测试用户的数据库输入。

脚本崩溃在: $ testBase = new mysqli(“sfd”,“sdf”,“sdg”,“sdf”);

在控制台中:未捕获的SyntaxError:意外的令牌<

是的,你搜索了这个问题但是大多数人在你进行查询时会遇到这个错误,当我尝试创建一个mysqli连接时,我已经这样做了。

Ajax脚本:

if (error == false){
var name = $('#name').val(),
    url = $('#url').val(),
    datahost = $('#datahost').val(),
    datausername = $('#datausername').val(),
    datapassword = $('#datapassword').val(),
    dataname = $('#dataname').val(),
    license = $('#license').val(),
    data = 'name='+ name +'&url='+ url +'&datahost='+ datahost +'&datausername='+ datausername +'&datapassword='+ datapassword +'&dataname='+ dataname +'&license='+ license;

$( "#trans" ).fadeIn( 500, function() {
    $.ajax({
        type: "POST",
        url: "handlers/install.php",
        data: data,
        success: function(e){ // this happen after we get result
            react(e);
        }
    });
});

}

请帮帮我

handelers / install.php的响应是:

"<br />\n<b>Warning</b>:  mysqli::mysqli(): (HY000/1130): Host 'server2.ughost.nl' is not allowed to connect to this MySQL server in <b>/home/universa/public_html/klant/handlers/install.php</b> on line <b>59</b><br />\n<br />\n<b>Warning</b>:  mysqli::close(): Couldn't fetch mysqli in <b>/home/universa/public_html/klant/handlers/install.php</b> on line <b>75</b><br />\n{\"ban\":0,\"error\":0,\"license\":0,\"url\":0,\"name\":0,\"sql\":0,\"message\":\"localhost + asd + asdas+dasf\"}"

1 个答案:

答案 0 :(得分:0)

好的问题是,当登录不正确时,install.php总是会发出警告。 但我需要检查它,因为这是一个用户输入,所以我是如何解决它的?

error_reporting(0);
                        $testBase = new mysqli($datahost, $datausername, $datapassword, $dataname);
                        error_reporting(1);
                        if ($testBase->connect_errno) {
                            $response['sql'] = 1;
                            $testBase->close();
                        } else {
                            //can connect with database
                            $testBase->close();

                        }