Steve

Results 1 comments of Steve

Ok, So, I think I know what is happening. Instead of: `$qrcode = new QRCode('WIFI:S:'.$ssid.';T:'.$auth.';P:'.$pass.';;');` I changed it to: ``` $data = "WIFI:S:$ssid;T:$auth;P:$pass;"; $qrcode = new QRCode($data); ``` And it...