Have posted this once, got no answer.
 
Anyone knows why a script like

 

$handle = printer_open();

printer_start_doc($handle);

printer_start_page($handle);

printer_write ($handle, "line 1");

printer_write ($handle, "line 2");

printer_end_page($handle);

printer_end_doc($handle);

printer_close($handle);

 

produces two separate pages, one with "line 1" and the other with "line 2", instead of a single page with both lines ?

 

Thanks

 

Luis Moreira

 

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Reply via email to