我正在使用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();
答案 0 :(得分:1)
将?q=123
添加到您正在呼叫的网址,并在每次调试时再次更改该号码。这可以防止您的浏览器和PDF插件缓存您的请求和以前的错误。
答案 1 :(得分:0)
我花了大约5秒钟在FPDF FAQ中找到this。