将数据导出到Excel工作表

时间:2016-04-30 07:12:05

标签: php excel

我使用了一些代码,我使用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';
 }

错误

enter image description here

工作表错误

enter image description here

我想从Excel工作表中删除页脚以及打开文件时出错。

1 个答案:

答案 0 :(得分:1)

您可以使用库将数据库值导出为ex​​cel
https://phpexcel.codeplex.com/