fpdf在ie7中不起作用

时间:2010-12-20 09:55:48

标签: php fpdf

我正在使用fpdf库向观众显示pdf。所有浏览器都显示pdf,但我遇到了ie7的问题。因为什么也没有显示。

示例用于检查的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();

2 个答案:

答案 0 :(得分:1)

?q=123添加到您正在呼叫的网址,并在每次调试时再次更改该号码。这可以防止您的浏览器和PDF插件缓存您的请求和以前的错误。

答案 1 :(得分:0)

我花了大约5秒钟在FPDF FAQ中找到this