0
我現在正在以CSV格式導出文檔。但我遇到了問題。我的PHP代碼出現在導出的CSV文檔中
一旦我將CSV標題引入代碼中,任何後續的PHP都會顯示在導出的CSV文檔中,而不是我想要的信息。
請幫助我。
header("Content-type:text/octect-stream");
header("Content-Disposition:attachment;filename=".$_GET['docname'].".csv");
//the php for getting the info
mysql_connect("localhost","root", "");
mysql_select_db("mydb");
//CSV Processing
$sql_csv = mysql_query($query);
$tCount = mysql_num_fields($sql_csv);
//the first line is for the column names
for($i=0; $i<=($tCount-1); $i++)
{
if(mysql_field_name($tColumns,$i)!='')
{
echo ucfirst(mysql_field_name($tColumns,$i)).',\n';
}
}
while($row = mysql_fetch_row($sql_csv))
{
echo '"' . stripslashes(implode('","',$row)) . "\"\n";
}
exit;
這是你的全代嗎?如果不插入header()語句,您的PHP腳本是否按預期運行? –
也許你有一個錯誤的內容類型頭。它應該是「octet-stream」而不是「octect-stream」 – Abhay
@George - 感謝指針,問題出在我的代碼上。 –