将长字符串插入数据库表

时间:2014-03-16 14:06:56

标签: php mysql database

content字符串,只要文章不能像它应该的那样插入到表中。我试图将$ content变量的值更改为长字符串,但它仍然没有插入长字符串,我想问题出在查询中。

  $content = $_POST['content'];

  if($submit)
  {
      if($title&&$content)
      {
        $query = mysql_query("INSERT INTO my_table (title,content) VALUES ('$title', '$content')");
      }
  }

0 个答案:

没有答案