Sunday, June 4, 2023

How to Reader NFC Drivers using CMD or notepad in PHP

Leave a Comment



Step 1:


Copy and Paste this code to your Sublime or Notepad name the page as index.php

             <!-- this is for barcode scanner not tab--> 
<script language="javascript"> 
    function DoCheckLength(aTextBox) { 
      if (aTextBox.maxLength - aTextBox.value.length<=0) { 
        document.theForm.submit(); 
        //beep.play(); 
      } 
    } 
  </script> 



   <form class="form-horizontal style-form" NAME="theForm" action="s_homepage.php" method="get" >   

            <label for="code">TAP YOUR ID</label>
                            <input class="form-control" type="text"  onkeyup="return(DoCheckLength(this));" ID="firstTextBox" name="idno"  autofocus placeholder="Swipe your ID" autocomplete="off" >

 </form>



Then make new page and name as s_homepage.php and paste the code 

 
  <?php

         $idno1 = ($_GET['idno']);
                               echo "your ID Number is: ".$idno1." ";
                        
                            ?>




Install the drivers of NFC ACR122U-9 ..
Download this command to read your card ..  Download the file...
Read More

Saturday, March 4, 2023

How to create a CRUD simple Information System using Synthetica JAVA

Leave a Comment

 After you download the simple system please comment in this website the output of this simple system is Add , Edit, Delete and Update if you have any question just message Me enjoy :) 




Download the source code after: 


Download the file...   


Library : Download 
Read More

Friday, March 3, 2023

How to Print in Pos printer Xprinter 58 using Javascript and Php code

Leave a Comment


 


<!DOCTYPE html>

<html>

<body>

<h2>The window.print() Method</h2>

<p>Click the button to print the current page.</p>

<button onclick="window.print()">Print this page</button>

</body>

</html>

Read More