| I'm using dompdf class for generate class. http://code.google.com/p/dompdf/ I'm trying to add page number on the pdf. I have try the below code. but couldn't get the page number at the pdf. where I'm doing wrong. please suggest me. <?php require_once("dompdf_config. inc.php");
$dompdf = new DOMPDF();
$html = '<html><body>';
$dompdf->render(); $dompdf->stream("sample.pdf"); ?> regards, saeed |