2
0

qrcode.php 281 B

12345678910111213141516
  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. myQrcode::show($link);