content
字符串,只要文章不能像它应该的那样插入到表中。我试图将$ content变量的值更改为长字符串,但它仍然没有插入长字符串,我想问题出在查询中。
$content = $_POST['content'];
if($submit)
{
if($title&&$content)
{
$query = mysql_query("INSERT INTO my_table (title,content) VALUES ('$title', '$content')");
}
}