我的PHP页面上有一个HTML表格,我想导出到excel文件,并且只需点击一下按钮就可以使用此文件供用户下载。我怎么能用jQuery或PHP做到这一点? 。演示的任何代码示例。这会很棒
答案 0 :(得分:1)
您必须在页面上发布您所拥有的表的html标记,或者在服务器端创建相同的标记,然后使用以下代码将其导出为excel格式。
<?php
$file="test.xls";
$test="TheTableMarkupWillGoHere";
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=$file");
echo $test;
?>
答案 1 :(得分:1)
也许这篇文章对你有用。使用PHP和jQuery:
http://nice-tutorials.blogspot.com/2011/06/export-to-excel-in-php-with-jquery.html