I have a receipt printer TM-T88IV with usb access. Is it possible to print something directly to the printer from a .php website? Something like
<?
$text=random_text_method();
print_to_local_tm($text);
?>
? I have no clue how to get startet.
I have a receipt printer TM-T88IV with usb access. Is it possible to print something directly to the printer from a .php website? Something like
<?
$text=random_text_method();
print_to_local_tm($text);
?>
? I have no clue how to get startet.
If TM-T88IV's USB connection are recognized as COM(serial-port), You can use PHP serial-port extension.
Gorilla(PHP serial-port extension)
https://github.com/oasynnoum/Gorilla
Basic usage of Gorilla
https://gist.github.com/oasynnoum/6076496