include "./include/db.php"; //這邊已經確實載入所有資料庫設定
$url="http://www.twnic.net.tw/whois.cgi"; //傳送目的網址
$postdata="query=google&sld=com.tw"; //傳送值
$user_agent = "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_USERAGENT, $user_agent);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_POST,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postdata);
curl_setopt($ch, CURLOPT_TIMEOUT,1); //Timeout 時間
$result = curl_exec($ch);
curl_close($ch);
$xxx = $result ;
echo $xxx;
//把$xxx 替代成為 任何 字串 或 數值 是沒有問題 所以資料庫寫入本身是ok的
$sql = "insert into ".$db_sht[seleve_sss]." set
content = '".$xxx."'
";
$res = mysql_query($sql);
請問你所謂的沒有辦法是寫入空值嗎
$result = curl_exec($ch);
$result是字串而不是陣列喔
所以可能會很大
你的mysql的欄位是設varchar嗎
如果是顯示不完整的話
就是你設的太小了
建議設成
longtext
應該就可以了