Jump to content

Print from PHP


jayR

Recommended Posts

I found a tutorial on this, and used some of there code which is:

<?php
$handle = printer_open("HP LaserJet 4200 PS");
printer_start_doc($handle, "My Document");
printer_start_page($handle);

printer_end_page($handle);
printer_end_doc($handle);
printer_close($handle);
?>

Unfortunatly, the printer will only print a blank page everytime instead of the string "My Document" which I want to print. Has anyone ever messed with this php_printer.dll and had similar problems? I seem to be stuck and I can't find much more on it.
Link to comment
https://forums.phpfreaks.com/topic/11481-print-from-php/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.