我有一个博客页面,但是php部分使页面空白,但是由于某种原因该doctype仍然可以使用。有什么错误,我该如何解决? 我遵循了一个教程,它对他有效
5
应该提出三种形式
答案 0 :(得分:0)
这是解决此问题的正确方法。 session_start(); include_once(“ db.php”);
if(isset($_POST['post'])) {
$title = strip_tags($_POST['title']);
$content = strip_tags($_POST['content']);
$title = mysqli_real_escape_string($db, $title);
$content = mysqli_real_escape_string($db, $content);
$date = date('l js \of F Y h:i:s A');
$sql = "INSERT into posts (title, content, date) VALUES ('$title', '$content', '$date')";
if($title == "" || $content =="") {
echo "Please complete your post";
return;
}
mysqli_query($db, $sql);
header("Location: index.php");
}