i am using php 5.4.3
I have this code:
<?php
$handle = printer_open();
printer_write($handle, "Text to print");
printer_close($handle);
?>
when i run get below error message :
Fatal error: Call to undefined function: printer_open()...
What could be wrong?