我是使用PDO的新手,我在提交表单时收到了http 500服务器错误。
包含处理代码的php页面位于正确的文件夹中,因此我不知道为什么会抛出500错误。
没有任何网址重写。
这是我的代码:
try {
$dbh = new PDO("mysql:host=$hostname;dbname=crm",$username,$password);
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); // <== add this line
$stmt = $db->prepare("INSERT INTO testdrives (forename, surname,phone,email,add1,add2,add3,city,county,postcode,car,date) VALUES (:forename, :surname,:phone,:email,:add1,:add2,:add3,:city,:county,:postcode,:car,:date)");
$stmt->bindParam(':forename', $_POST['forename']);
$stmt->bindParam(':surname', $_POST['surname']);
$stmt->bindParam(':phone', $_POST['phone']);
$stmt->bindParam(':email', $_POST['email']);
$stmt->bindParam(':add1', $_POST['add1']);
$stmt->bindParam(':add2', $_POST['add2']);
$stmt->bindParam(':add3', $_POST['add3']);
$stmt->bindParam(':city', $_POST['city']);
$stmt->bindParam(':county', $_POST['county']);
$stmt->bindParam(':postcode', $_POST['postcode']);
$stmt->bindParam(':car', $_POST['car']);
$stmt->bindParam(':date', $_POST['date']);
$stmt->execute();
if ($dbh->query($sql)) {
echo "<script type= 'text/javascript'>alert('New Record Inserted Successfully');</script>";
}
else{
echo "<script type= 'text/javascript'>alert('Data not successfully Inserted.');</script>";
}
$dbh = null;
}
catch(PDOException $e)
{
echo $e->getMessage();
}
答案 0 :(得分:5)
修改强>
我错过了准备中用于$dbh
和$db
连接的错误变量; 我的坏。
原始答案。
这一行:
if ($dbh->query($sql)) {...}
失败有两个原因:
query()
。$sql
。使用相关大括号删除该语句,并将其替换为简单并将$stmt->execute();
替换为:
if($stmt->execute()){
// success
} else{
// error
}
并使用PDO的错误处理(正如您现在所做的那样)和PHP的错误报告:
也检查你的日志。
答案 1 :(得分:0)
发现问题
上面的代码显示
$stmt = $db->prepare
需要更改为
$stmt = $dbh->prepare
感谢您帮助解决其他问题
快速提问如何插入具有自动增量列的表格?