我有一个正在处理的项目。每当我向SQL表中插入数据时,该数据都应显示在表中,但我只会得到空行,如下面的图片所示。
这是我用来将数据插入sql表的代码。
`
include_once 'dbh.inc.php';
$patient = $_POST['name'];
$time = $_POST['time'];
$phone = $_POST['phone'];
$msg = $_POST['message'];
$sql = "INSERT INTO dzh inievschedule(patient,time,patientPhone,patientMessage) VALUES ('$patient','$time','$phone','$msg')";
mysqli_query($conn,$sql);
header('Location: ../index.php?bookmark=success');`