时间:2021-07-01 10:21:17 帮助过:4人阅读
prepare($query); $name = '张某某'; $address = '海珠区'; $phone = '15814535527'; $stmt->bindParam(1, $name); $stmt->bindParam(2, $address); $stmt->bindParam(3, $phone); $stmt->execute(); if ($insertID = $dbh->lastInsertId()) { echo $insertID.'
'; } else { echo '插入出错!'; exit(); }} catch(PDOException $d) { echo '数据库连接失败:'.$e->getMessage(); exit();}
$arr = $stmt->errorInfo();
print_r($arr); //贴出结果
我懂了。。原来我的数据库字段其中两个没有填上去的不为空。。。