testfile * copy testfile "\\%COMPUTERNAME%\Receipt Printer" * del testfile */ try { // Enter the share name for your USB printer here $connector = null; //$connector = new WindowsPrintConnector("Receipt Printer"); /* Print a "Hello world" receipt" */ $printer = new Printer($connector); $printer->text("Hello World!\n"); $printer->cut(); /* Close printer */ $printer->close(); } catch (Exception $e) { echo "Couldn't print to this printer: " . $e->getMessage() . "\n"; }