I there any waywith PHP to send a page or a specific content to printer with click of a button? Thanks in advance
Im not aware of any php function for that since PHP is server side.. Interesting question!
This would enable print from HTML button <input type="button" onClick="window.print()" value="Print The Report"/>
I did find a PECL library that is Windows only (!) http://pecl.php.net/package/printer and http://www.php.net/manual/en/book.printer.php
Good luck!