我第一次使用PDO。我創建了這個方法,我得到這個錯誤:PDO rowCount錯誤
Call to a member function rowCount() on a non-object
以下是我的代碼。
$db = new PDO("mysql:host=$dbhost;dbname=$dbname;charset=utf8", $dbuser, $dbpassword)
function doesRecordExist($query) {
global $db;
try {
$stmt = $db->query($query);
$count = $stmt->rowCount();
return $count;
} catch (PDOException $ex) {
die($ex->getMessage());
}
}
你能幫我請