Mysqli函数准备查询

时间:2015-02-07 11:49:43

标签: php html mysql mysqli sqlbindparameter

我正在为大学做一个数据库项目,但是在注册用户时出现了这个错误:Fatal error: Call to a member function bind_param() on a non-object in (...)

我最初写过

$insert = $db->prepare("INSERT INTO customer (name, email, phonenumber, adress, password) VALUES (?, ?, ?, ?, ?");

然后我改进了,你可以在代码中看到。

我搜索了一些答案,但似乎没有任何工作,如果有人能帮助我解决这个问题,我会很高兴。

提前感谢,André

<?php
require 'db/connect.php';
require 'functions/security.php';

if(!empty($_POST)) {

    if(isset($_POST['name'], $_POST['email'], $_POST['address'], $_POST['phone'], $_POST['password'])) {

        $name = trim($_POST['name']);
        $email `enter code here` = trim($_POST['email']);
        $phone = trim($_POST['phone']);
        $address = trim($_POST['address']);
        $password  = trim($_POST['password']);

        if(!empty($name) && !empty($email) &&!empty($phone) && !empty($address) &&!empty($password)){
                $insert = $db->prepare("INSERT INTO customer VALUES (?, ?, ?, ?, ?");
                $insert->bind_param('ssiss', $name, $email, $phone, $address, $password);
                //$insert->close();

            if($insert->execute()){
                print_r("Done");
                die();
            }            
        }        
    }
}
?>

1 个答案:

答案 0 :(得分:2)

在查询中调用成员函数意味着查询无法执行,因为它包含错误。

在这种情况下,您没有关闭VALUES()。 将$insert = $db->prepare("INSERT INTO customer VALUES (?, ?, ?, ?, ?");更改为$insert = $db->prepare("INSERT INTO customer VALUES (?, ?, ?, ?, ?)");

确保检查是否可以执行错误。 检查查询是否可以执行的示例:

$query = $this->_db->prepare("SELECTTEST name FROM user"); //.. Bad query (false)
if(!$query) //.. If the query is false.
{
     trigger_error('Query couldn\'t get executed');
}

如果这解决了您的错误,我将非常感谢您将我的答案作为答案投票。