Mysql
 sql >> Database >  >> RDS >> Mysql

SQLSTATE[23000]:Violazione del vincolo di integrità:1048 La colonna 'post' non può essere nulla

inserisci $post =$_POST['post'];

$post = $_POST['post'];

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