我需要在创建pdf whit fpdf后显示新页面。我的想法是在pdf之前创建页面,在浏览器中缓存它,创建pdf,然后刷新缓存和显示页面,但我不知道该怎么做。
<?php $txt = "hallo";
//My page to be cached
header("..........");
// my pdf
require('fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->Cell(40,10,"$txt");
$pdf->Output();
// after pdf I want to show page in the cache
?>
非常感谢
答案 0 :(得分:0)
$pdf->Output("Filename.pdf","D");
双引号中的第二个参数D.这会将文件下载到用户的计算机中,而不是将其保存在服务器中。
我认为这是创建pdf的更好方法。 :)