【发布时间】:2010-12-20 18:35:04
【问题描述】:
我正在使用 fpdf 库向查看者显示 pdf。所有浏览器都显示pdf,但我遇到了ie7的问题。因为什么都没有显示。
我用来签入 ie 的示例 pdf 代码。
require 'fpdf.php';
class PDF
{
//Necessary codes for header footer body sction
}
$pdf=new PDF();
$title='Faq in Current Account';
$pdf->SetTitle($title);
$pdf->SetAuthor('Rangan');
$content="This is a sample content";
$pdf->PrintChapter(1,'title',$content);
$pdf->Output();
【问题讨论】: