PDFをビューアに表示するためにfpdfライブラリを使用しています。すべてのブラウザーで 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();