IE7 FPDF değil çalışır

0 Cevap php

i izleyicilere pdf görüntülemek için FPDF kütüphaneyi kullanıyorum. Bütün tarayıcılar pdf gösterir ama ie7 bir sorun tanıştı. hiçbir şey görüntülenir yana.

sample pdf code i had used to check in ie.

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 Cevap