0
所以我在一個特定的表,其中的用戶名是已在數據庫中,像這樣抓行量:PHP PDO rowCount不工作?我認爲
$second_sql = $db->prepare("SELECT * FROM users WHERE username = :username");
$second_sql->bindParam(':username', $username);
$second_sql->execute();
if($second_sql->rowCount() == 1) {
$db = null;
header("Location: ../login/");
} else {
$statement->execute();
$db = null;
}
的問題是它不工作。如果你需要更多的腳本,請告訴我。
「不工作」是什麼意思? – Chris
這不是抓行數。 –
你沒有取任何東西。你缺少$ result = $ second_sql-> fetchAll(); – happymacarts