getqr.php 239 B

123456789
  1. <?
  2. error_reporting(0);
  3. include('../config/phpqrcode/phpqrcode.php');
  4. $data = $_GET[u];
  5. $errorCorrectionLevel = "L";
  6. $matrixPointSize = $_GET[size];
  7. QRcode::png($data, false, $errorCorrectionLevel, $matrixPointSize);
  8. exit;
  9. ?>