使用php将文件从表导出到excel

时间:2013-12-04 07:28:48

标签: php excel

嗨,我是编程的新手,我正在使用PHP。下面是我的.xls代码。我有一个表单,我有三个按钮添加搜索和“保存到excel”。我还有一个表格,我的输出添加按钮将显示,并连接到我的数据库。现在我的问题是,当我点击“保存到excel”按钮时,我的表单中的整个数据显示为excel。我想要的是我的表格中的表格只会保存在我的Excel中。不是我表格中的全部数据。如果我只能在这里发布图像你可能会清楚地理解我。 :(但请我需要一些帮助。:( ..谢谢

if (isset($_POST['download']))
{
$file="document_name" . date('Ymd') . ".xls";

header("Content-type: application/vnd.ms-excel");// file extension name
header("Content-Disposition: attachment; filename=$file");

}

1 个答案:

答案 0 :(得分:-1)

header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");;
header("Content-Disposition: attachment;filename=line_utilization_report.xls ");
header("Content-Transfer-Encoding: binary ");