i am using fpdf library for displaying pdf to viewers. All browsers displays pdf but i met a problem with ie7. since nothing is displayed.
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();
Add
?q=123to the url you are calling and change the number every time you call it again when debugging. This prevents your browser and the PDF plugin to cache your request and previous errors.