Matthew Berwald <[EMAIL PROTECTED]> wrote: > Do you know of any method/package out there that I > could install on my linux machine that will all me to > print data to a printer? Thanks for the help.
$lp = popen("lpr", "w");
fwrite($lp, "stuff to print");
pclose($lp);
this uses the unix-standard 'lpr' utility.
jim
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

