Jump to content

farukweb

New Members
  • Posts

    5
  • Joined

  • Last visited

Posts posted by farukweb

  1. I can print easily from my pc connected with usb pos machine.I have installed driver , so that it works fine. 

    EscPos.php

    try {
        // Enter the device file for your USB printer here
        // You can check the tutorial here: https://mike42.me/blog/2015-03-getting-a-usb-receipt-printer-working-on-linux
        $connector = new FilePrintConnector("/dev/usb/lp0");
        /* 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";
    }

    myform.php 

    when i submitted a form data , it is redirecting escpos.php for printing and it prints. 

    but i don't want like that. 

    I want when i will submit form, it will be print directly current page  without redirecting to escpos.php. 

     

     

  2. 6 hours ago, ginerjm said:

    What kind of a button?  A physical one that is connected to your device?  Or an HTML submit button?  What have you tried in code so far?

     

    Help us to help you.  We will if you have a question about code!

    this is html submit button. 

    when i will submit form, it will hit pos printer directly .

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.