Article sections

    WebViewGold offers a built-in QR code scanner that allows scanning these codes and opening the encrypted URL in the WebView afterward.

    Link to this kind of URL to trigger the QR Code Scanner:

    qrcode://

    As you see, the QR Code Scanner in WebViewGold only supports URL Calls right now. But you could encode the URL https://www.example.org/?form_input_text=TEST and insert the value into the text field with <?php echo $_GET[“form_input_text”]; ?> 🙂 Example: You encode the URL https://www.example.org/?form_input_text=TEST to a QR code. On this page you display the TEST value in your form:

    <form>
    
      <input type="text" id="fname" name="fname" value="<?php echo $_GET["form_input_text"]; ?> ">
    
    </form>

     

    We are working on more cool QR code scanner features.

    in WebViewGold for AndroidWebViewGold for iOS