<?php
$url="http://www.bridal100.com/";
echo cre_QR($url);
function cre_QR($chl, $widhtHeight ='80', $EC_level='L', $margin='0'){
return '<img src="http://chart.apis.google.com/chart?chs=' . $widhtHeight . 'x' . $widhtHeight . '&cht=qr&chld=' . $EC_level . '|' . $margin . '&chl=' . $chl . '" />';
}
?>