Displaying a QR Code in $message
After submitting a form the standard message displayed on the screen "$message". By using submitted form data you can create a contact QR code as part of the success message.
Step-by-step guide
Just add this code to your Custom Code area in the BlinkForm builder.
Sample Code$message = "Business card of Mr. ".$data['Name']." ".$data['Last_Name']." "; $message .='<img src="http://chart.apis.google.com/chart ?cht=qr &chs=200x200 &chl=MECARD:N :' . $data['Last_Name']. ',' . $data['Name'] . ' ;TEL:' . $data['Phone'] . ' ;EMAIL:' . $data['Email'] . ' ;NOTE:' . $data['Note'] .'; ">';
View live demo at http://blinkm.co/support/MYQRCODE_ADD/?
Related articles