Click here to Skip to main content
15,885,366 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
how to store an QR Code image into mysql database with php? The code to generate an QR Code image is:
<img src="http://qrickit.com/api/qr?d=<?php echo urlencode($data); ?>&addtext=Data &txtcolor=111133&fgdcolor=111133&bgdcolor=BBBBBB&qrsize=200&t=p&e=m">
Posted
Updated 4-Jun-18 18:58pm
Comments
_debasis 7-May-13 2:44am    
Here the qr code is showing in a html canvas tag or a simple html image.

1 solution

Note- pass value in hidden field----


generate QR code






$(document).ready(function (e) {
$("#submit").on('click',(function(e) {
var q=$("#qrid").attr('src');
document.getElementById("qrimg_url").value = q;
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900