我使用了一些代码,我使用php将数据库表数据导出到excel表。但是,无论何时首先下载文件,它都会打开时出现错误,表明它不是支持的格式。单击是,它将打开并显示我的完整数据,但在页面的最后一页中也会显示页脚。
代码
<?php
if(isset($_POST['download'])){
// The function header by sending raw excel
header("Content-type: application/vnd-ms-excel");
// Defines the name of the export file "codelution-export.xls"
header("Content-Disposition: attachment; filename=Subscribers.xls");
ob_clean();
// Add data table
include 'data.php';
}
错误
工作表错误
我想从Excel工作表中删除页脚以及打开文件时出错。