excel文件不能以正确的格式在php中下载(excel file not downloading in proper format in php)

我使用下面的代码来下载excel文件。

$filename = "property.xls"; // File Name // Download file header("Content-Disposition: attachment; filename=\"$filename\""); header("Content-Type: application/vnd.ms-excel");

但是,它会下载空白的excel文件,我需要下载<table>标签的内容。

我已经把这段代码放在页面的顶部,在我的页面重新加载期间,它会下载excel文件,但每次都是空的。

I have use following code for download excel file.

$filename = "property.xls"; // File Name // Download file header("Content-Disposition: attachment; filename=\"$filename\""); header("Content-Type: application/vnd.ms-excel");

But, it will download blank excel file i need to download content of <table> tag.

I have place this code at top of page and during reloading of my page it will download excel file but it was empty every time.

最满意答案

根据@ravisachaniya的最新评论,我已经从当前页面和连接页面中删除了<head>和<title>标签以及所有默认内容,现在它工作正常

As per last comment by @ravisachaniya i have removed <head> and <title> tag and all default content which comes when we create page, from current page and from connection page, Now it is works properly

更多推荐