Hi
I have a document to print with php.
In my page, I started with
Now, the issue is at the line of printer_end_page($handle); it does not give a page break but continues to print in the same page.PHP Code:$handle=printer_open("PrimoPdf");
printer_start_doc($handle,"my document");
printer_start_page($handle);
print "< things to be printed>";
printer_end_page($handle);
print "< extra things to be printed>";
Any help could be greatly appreciated.
Thanks,
Aras
