我的代码在这里有什么问题吗?
这个问题在这里已经有了答案:
问题在于你已经在下面一行中指定了赋值而不是比较:
if ($post_title=='' || $post_keywords=='' || $post_content='' || $post_author=='' || $post_summary==''){
将$post_content=''
更改$post_content=''
$post_content == ''
你的错误在这里$post_content=''
如果条件应该是$post_content==''
在这种情况下,你设置这个var $ post_content为空字符串,所以它将在数据库表中为空。