下載CSV文件,以便嘗試這樣的:問題通過HTTP頭
header("Content-type: application/csv");
header("Content-Disposition: attachment; filename=file.csv");
header("Pragma: no-cache");
header("Expires: 0");
echo $fields;
嘗試也和其他許多人。
header("Content-type: text/csv");
然而,發生的事情是,MySQL數據只是回聲瀏覽器。
這是我抓住了與螢火蟲的HTTPheaderResponse:
Date Wed, 18 May 2011 14:15:18 GMT
X-Powered-By PHP/5.1.6
Content-disposition attachment;filename=MyVerySpecial.csv
Connection close
Content-Length 992
Server Apache/2.2.3 (Red Hat)
編輯:值得注意的是,從一個jQuery。員額()我想這一點,如果影響它的回報。
所以,有誰知道爲什麼會出現這個問題?我很茫然。
感謝
在標題之前你有任何輸出嗎?你的代碼是好的,應該工作 – Nemoden 2011-05-19 11:04:52
好,如果看看我最新的編輯,我試圖將這作爲JQuery .post()的返回,如果這可能會影響它? – buymypies 2011-05-19 11:06:44
它應該只是一個鏈接。爲什麼你需要jquery.post? – Nemoden 2011-05-19 11:08:55