我使用以下代码下载excel文件。
$filename = "property.xls"; // File Name
// Download file
header("Content-Disposition: attachment; filename=\"$filename\"");
header("Content-Type: application/vnd.ms-excel");
但是,它会下载空白的excel文件,我需要下载<table>
标记的内容。
我已将此代码放在页面顶部,在重新加载页面时,它会下载excel文件,但每次都是空的。
答案 0 :(得分:0)
根据@ravisachaniya的最后评论,我删除了<head>
和<title>
标记以及当前页面和连接页面创建页面时出现的所有默认内容,现在它正常运行< / p>