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

  1. 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'] .';
    	">';