|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-01 12:45 UTC] edink@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 25 21:00:02 2025 UTC |
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 !!!