Printer option in php
how to print a document using codeigniter 开发者_StackOverflowPHP printer option without printer dialog box?
You can't - or at least, you can't in any browser I know of. The best you can do is use some JavaScript to throw up a print dialog, and allow the users to click OK.
This is for good reason - if you could print directly, imagine how many malicious sites would send unsolicited junk to your printer.
@saranya, I'm using cups to print from a webpage to a thermal printer, our PHP app is running on apache/linux and cups is installed on the server configured to a default thermal printer.
Have a look at http://cups.org
精彩评论