| 1234567891011121314151617 |
- <?php
- session_start();
- require_once "../conf.inc.php";
- require_once DIR_PHP_LAYOUTS . "header.php";
- header ('Content-Type: image/png');
- if(core::ifGet("q")){
- $link = base64_decode(core::getGet("q"));
- } else {
- $link = "https://".DOMAIN_EVENTS;
- }
- $qrcode = new myQrcode();
- $qrcode->show($link);
|