我最近使用下面的代碼將數據導出爲excel文件。但是輸出顯示爲具有來自數據庫的正確數據的html頁面。使用php將數據從數據庫轉儲到excel文件4.3.9
<?php
/* database connection here */
$file_type = "vnd.ms-excel";
$file_ending = "xls";
header("Content-Type: application/$file_type");
header("Content-Disposition: attachment; filename=$table.$file_ending");
header("Pragma: no-cache");
header("Expires: 0");
/* extract from database */
,拿出從數據庫中的所有數據,所以我假定數據庫功能是正確的,但它只是不保存爲Excel文件。我在以前的項目中使用的代碼完全相同,並且工作正常。任何想法如何解決這個問題? plz幫助。
**警告**:PHP 4已被*不支持*超過兩年。您*不應*編寫專爲PHP 4設計的新代碼。 – Charles 2011-04-04 06:21:25
他的生產環境可能實際上迫使他使用舊的PHP版本。雖然我確實贊同你:-)。 – Htbaa 2011-04-04 07:23:18