我的代码在这里有什么问题吗?

这个问题在这里已经有了答案:

  • 3个不同等于4个答案
  • 意外的错误消息在PHP窗体(SQL语法错误)3答案

  • 问题在于你已经在下面一行中指定了赋值而不是比较:

    if ($post_title=='' || $post_keywords=='' || $post_content='' || $post_author=='' || $post_summary==''){
    

    $post_content=''更改$post_content='' $post_content == ''


    你的错误在这里$post_content=''如果条件应该是$post_content==''在这种情况下,你设置这个var $ post_content为空字符串,所以它将在数据库表中为空。

    链接地址: http://www.djcxy.com/p/69447.html

    上一篇: Is anything wrong with my code here?

    下一篇: Syntax error, unexpected '