On May 16, 5:43 pm, saeed ahmed <
saeed....@gmail.com> wrote:
> 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>';
> $html .='<script type="text/php">
> $font = Font_Metrics::get_font("verdana", "bold");
> $dompdf->page_text(200, 16, "{PAGE_NUM} of {PAGE_COUNT}", $font,
> 10, array(0,0,0)); </script>';
> $html .= '</body></html>';
>
> $dompdf->load_html($html);
> $dompdf->render();
> $dompdf->stream("sample.pdf");
> ?>
>