私は、pdfを視聴者に表示するためにfpdfライブラリを使用しています。すべてのブラウザにpdfが表示されますが、ie7で問題が発生しました。何も表示されないためです。fpdfは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();
問題ありません。ウールは誰ですか? – demonkoryu