我知道这里提出了这类问题,我试图从很多时候开始搜索这个问题。
显示错误消息Fatal error: Call to a member function bind_param() on boolean in ... on line ...
。我正在使用localhost
每个其他查询都可以正常工作。
我已经尝试了echo-ing
我在这里使用的所有变量,它显示了正确的值
$stmt = $this->conn->prepare("UPDATE profile SET (lastlogin_date = '".$last_login_date."', lastlogin_ip = '".$ip_address."', login_last_try = '".$last_login_date."') WHERE profile_id = ?");
$stmt->bind_param('s', $profile_id);
$result = $stmt->execute();
这里有什么问题?