www.webdeveloper.com
+ Reply to Thread
Results 1 to 3 of 3
  1. #1
    Join Date
    Oct 2011
    Posts
    312

    Using barcode input data to textbox and move to second textbox the focus

    Hi..

    I have form and i want to input data using barcode and it will display on textbox and after input on the first textbox the focus will go to next textbox untill it will go on the last textbox and on the last textbox it will automatically save the data's on the database.

    How is it possible?

    here is my sample code:

    Code:
    <?php
        error_reporting(0);
       date_default_timezone_set("Asia/Singapore"); //set the time zone  
    $con = mysql_connect('localhost', 'root','');
    
    if (!$con) {
        echo 'failed';
        die();
    }
    mysql_select_db("mes", $con);
    ?>
    
    <html>
    <head>
    <script type="text/javascript">
    function ini()
    {
    
    // Retrieve the code
    var code =document.getElementById ("code_read_box1").value;
    var code =document.getElementById ("code_read_box2").value;
    var code =document.getElementById ("code_read_box3").value;
    var code =document.getElementById ("code_read_box4").value;
    var code =document.getElementById ("code_read_box5").value;
    var code =document.getElementById ("code_read_box6").value;
    // Return false to prevent the form to submit
    return false;
    
    }
    
    </script>
    </head>
    <body onLoad="document.barcode.code_read_box1.focus()">
    
    <form name=barcode onsubmit = "return ini()">
    
    <input type="text" id="code_read_box1" value="" /><br/>
    <input type="text" id="code_read_box2" value="" /><br/>
    <input type="text" id="code_read_box3" value="" /><br/>
    <input type="text" id="code_read_box4" value="" /><br/>
    <input type="text" id="code_read_box5" value="" /><br/>
    <input type="text" id="code_read_box6" value="" /><br/>
    </form>
    
    </body>
    </html>

  2. #2
    Join Date
    Nov 2011
    Posts
    64
    Where is the submit button ?

  3. #3
    Join Date
    Oct 2011
    Posts
    312
    No submit button...I mean on the last textbox it will save the inputted data.

    Thank you

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
HTML5 Development Center



Recent Articles