如何为xls文件提供保存选项

时间:2011-04-04 09:49:46

标签: file download for-loop xls

我需要以xls格式生成mysql表的报表。我得到了

Saving a .xls file with fwrite

这段代码和魅力一样。但问题是我需要有一个保存选项,下载并浏览目录以保存文件。任何人都可以帮忙吗?我尝试更改标题,但我没有取得任何成功。

提前致谢

Vinay

1 个答案:

答案 0 :(得分:0)

假设你正在使用PHP:

header('Content-Type: application/vnd.ms-excel;');
header('Content-type: application/x-msexcel');
header('Content-Disposition: attachment; filename="your_xls_on_the_server.xls";');
header("Content-Transfer-Encoding: binary");
header("Content-Length: " . filesize('your_xls_on_the_server.xls'));
ob_clean();
flush();
readfile('your_xls_on_the_server.xls');
exit;