Hello,
I am running php 4.3.8 on a Windows 2000 server.
The printer is a Ricoh 3800c
I can print to servers printer using php:
$handle = printer_open("Itinerary");
printer_write($handle, "Text to print");
printer_close($handle);
The problem is that I want the printer to staple the pages.
I have the default settings on the printer to staple and if I print on the server from a program (word, the net) it automaticly staples. However if I print from the php code it does not staple, is there a way to force php to print to a "saved printer profile"?
Many Thanks
Chris W.