【发布时间】:2018-11-10 10:13:37
【问题描述】:
我使用的是php,需要生成一个pdf(我使用的是fpdf)和一个内容相同的xml文件。 pdf / xml 由带有 post 参数的 html 表单调用。 不幸的是,只下载了一页(pdf 或 xml)。我该如何解决这个问题?
表单页面
<form name="aaa" id="aaa" action="page1.php" method="POST" target="_blank">
....
<div><input type="submit" value="Insert"></div>
</form>
第1页
<?php
//do stuff and generate pdf
header("Location: page2.php");
?>
第2页
<?php
//do same stuff above and generate xml
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Disposition: attachment; filename=test.xml");
header("Content-Type: text/xml");
header("Content-Transfer-Encoding: binary");
...
?>
我想要同时下载 pdf 和 xml 的表单提交
谢谢
【问题讨论】: