我寫了一個PHP腳本到一個文本文件中的內容插入到MySQL數據庫和我的文件的A.TXT內容PHP腳本文件的內容加載到MySQL數據庫
\ n用於新行
我希望它被加載到數據庫中包含特殊字符 \ n
因爲它是... 但正在加載僅「用於新行」 好心幫我... 感謝名單
<?php
$filename = "a.txt";
$f = fopen($filename, 'r');
$total_contents = fread($f, filesize($filename));
print $total_contents;
mysql_connect("localhost", "datab_user", "password") or die(mysql_error());
mysql_select_db("datab_name") or die(mysql_error());
mysql_query("INSERT INTO table_name
(id,content) VALUES(333,'$total_contents') ")
or die(mysql_error());
?>
你不能使用load data infile - http://dev.mysql.com/doc/refman/5.1/en/load-data.html ??比較... – 2010-10-26 07:15:37