mirror of
https://github.com/php/web-pres2.git
synced 2026-03-23 23:12:07 +01:00
7 lines
116 B
PHP
7 lines
116 B
PHP
<?php
|
|
header( 'Content-Type: image/png' );
|
|
include 'phpqrcode.php';
|
|
|
|
QRcode::png($_GET['d'], false, "M", 10, 2);
|
|
?>
|