微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php – SQLSTATE [23000]:完整性约束违规:1048列’post’不能为null

我有这个代码但是当我尝试这些代码时,我得到了:

sqlSTATE[23000]: Integrity constraint violation: 1048 Column ‘post’ cannot be null
this error.

我找不到任何解决方案.我尝试了另外的功能,这些功能是他们工作的但是这个功能不起作用.

?>
<form method="post">
Buraya yaz <br><textarea style="resize:none" name="post"></textarea> <br><input type="submit" value="Gönder">
</form>

<?PHP 
if(empty($_POST['post'])){
echo 'you should fill the area.';
exit;
}
if (empty($errors) === true) {
$users->sendpost($post);
}
?>

public function sendpost($post){
$query  = $this->db->prepare("INSERT INTO `posts` (`post`) VALUES (?) ");
$query->bindValue(1, $post);
try{
$query->execute();
}catch(PDOException $e){
die($e->getMessage());
}   
}

解决方法:

insert $post = $_POST [‘post’];

$post = $_POST['post'];

if(empty($_POST['post'])){
echo $errors[] = 'you should fill the area.';
}
if (empty($errors) === true){
$users->sendpost($post);
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐