[PHP] php printer functions...

2002-04-18 Thread Jimmy
I'm running PHP 4.1.1 on a Win2K box. If I understand the manual correctly, the printer functions have been integrated into PHP as of v4.0.4. However, when I try to call any of the printer functions, nothing works. Any ideas or suggestions? TIA -josh -- PHP General Mailing List

[PHP] PHP Printer functions

2002-03-14 Thread J. Wharton
I am attempting to change the orienation of printing for a page with a huge table to landscape instead of portrait. This is the code I used: $defprintercon=printer_open(); printer_set_option( $defprintercon, PRINTER_ORIENTATION, PRINTER_ORIENTATION_LANDSCAPE); printer_close($defprintercon); When