我如何在没有代码的情况下修复php部分,但无法使用?

时间:2019-04-21 14:32:21

标签: php mysql

我有一个博客页面,但是php部分使页面空白,但是由于某种原因该doctype仍然可以使用。有什么错误,我该如何解决? 我遵循了一个教程,它对他有效

5

应该提出三种形式

1 个答案:

答案 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");
}