Php Mysqli Bind_result

时间:2013-11-16 08:12:24

标签: php mysqli

我有一个错误行 - Fatal error: Call to a member function bind_param() on a non-object in... 这是我的代码:

function data () {
        $getid = 'SELECT wid FROM chii WHERE email = ?';
        $stmt = $this->conn->prepare($getid);
        $stmt->bind_param('s', $this->email);
        $stmt->execute();
        $stmt->store_result();
        $stmt->bind_result($this->wid);
    }

1 个答案:

答案 0 :(得分:0)

首先,在table周围加上反复 - 这是一个保留词。