使用PHP脚本将MySQL表数据导出为CSV

时间:2012-03-29 10:02:10

标签: php export-to-excel

我正在使用php

处理导出excel数据

但是以逗号分隔值下载为csv时出现问题 但我需要带有表字段值的XLS文件

我使用以下代码

    $values = mysql_query("SELECT * FROM $table");

while ($rowr = mysql_fetch_row($values)) {
for ($j=0;$j<$i-1;$j++) {

$csv_output .= $rowr[$j]."; ";
}
   $csv_output .= "\n";
}
$filename = $file."_".date("Y-m-d_H-i",time());
header("Content-type: application/vnd.ms-excel");
header("Content-disposition: csv" . date("Y-m-d") . ".csv");
header( "Content-disposition: filename=".$filename.".csv");
print $csv_output;

1 个答案:

答案 0 :(得分:0)

$rown=0;
while( $row = mysql_fetch_assoc($values)){
  if($rown++==0)
     $csv_output.=implode(";",array_keys($row)."\n";
  $csv_output.=implode(";",array_values($row)."\n";
}