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...
If You Enjoyed This, Take 5 Seconds To Share It

0 comments:

Post a Comment