is it possible to print directly to a network printer with PHP using LPR or something similar?

any pointers?

thanks.

link|improve this question
0x7fff5fbff853? – Mark Sep 16 '10 at 1:51
feedback

1 Answer

Sure is. If you are on Linux do use LPR.

exec("lpr -P 'printer' -r 'filename.txt');

More on LPR commands.
Take a look into LPR docs. You can easily show the print-queue and more from PHP.

link|improve this answer
Agreed, spawn off lpr. – Xepoch Jan 12 '11 at 3:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.