From:             [EMAIL PROTECTED]
Operating system: Win Nt 4 + Sp6
PHP version:      4.0.6
PHP Bug Type:     Output Control
Bug description:  Printing Problems

My code 

<?
$handle = printer_open("HP");
printer_start_doc($handle, "My Document");
printer_start_page($handle);
for ($i=1;$i<63;$i++)
        {
        printer_draw_text($handle, "Line $i", 500, 50+$i*50);
        $a=0;
        }
printer_end_page($handle);
printer_end_doc($handle);
printer_close($handle);
?>

The result :

The printer give print all the line except Line 17, Line 34 And line
51...
It's very strange !!! 


-- 
Edit bug report at: http://bugs.php.net/?id=12979&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to