HTML表格使用PHP优秀,以纯文本形式出现?

时间:2013-08-16 21:40:15

标签: php html header http-headers xlsx

单击按钮时,我正在运行ajax调用。请求命中此功能,只打印出纯文本。我正在这里撞墙。我做错了什么?

    $test="<table border=1><tr><td>Cell 1</td><td>Cell 2</td></tr></table>";
    header('Content-type: application/vnd.ms-excel');
    header('Content-disposition: attachment; filename="BondTracker.xls"');
    echo $test;

我只是在我的ajax调用中返回字符串。我是从localhost运行的

0 个答案:

没有答案