2
0

qrcode.php 306 B

1234567891011121314151617
  1. <?php
  2. session_start();
  3. require_once "../conf.inc.php";
  4. require_once DIR_PHP_LAYOUTS . "header.php";
  5. header ('Content-Type: image/png');
  6. if(core::ifGet("q")){
  7. $link = base64_decode(core::getGet("q"));
  8. } else {
  9. $link = "https://".DOMAIN_EVENTS;
  10. }
  11. $qrcode = new myQrcode();
  12. $qrcode->show($link);