我已将许多 html 文件中的文本复制到一个文本文件/变量中,我想将此数据(基本上是 html 代码)插入 mysql 数据库。我试过mysql_real_escape_string。但它仍然没有工作。这就是我正在做的事情:
$contentFromHtmlFile=file_get_contents($file);
$all_html_content.=$contentFromHtmlFile;
$all_html_content=mysql_real_escape_string($all_html_content);
$insert_query = "insert into $databasetable (pdf_id,pdf_text_data) values (190,$all_html_content);";
mysql_query($insert_query) or die(mysql_error());
这是错误:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '<meta charset=\"utf-8\" />\n\n<div id=\"jpedal\" style=\&quo' at line 1
这里我要插入的文本链接:http: //pastebin.com/F3BD745h