小编典典

SQLSTATE [23000]:违反完整性约束:1048列“ post”不能为空

sql

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

SQLSTATE [23000]:违反完整性约束:1048列“ post”不能为null,此错误。

我找不到任何解决方案。我尝试了另一种可以正常工作的功能,但这个功能无法正常工作。

?>
<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());
}   
}

阅读 213

收藏
2021-04-07

共1个答案

小编典典

插入$ post = $ _POST [‘post’];

$post = $_POST['post'];

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