我有一个自定义选择查询数据,我想将这些数据导出到可下载的pdf
我怎样才能做到这一点?
那些选择的查询数据根据用户而变化。此数据就像发票一样
有什么想法吗?
我使用下面的代码,但无法打开pdf。
$filename = "tender_report_" . date('Ymd') . ".pdf";
header("Content-Disposition: attachment; filename=\"$filename\"");
header("Content-Type: application/pdf");