Files
archived-web-pres2/qrcode.php
2015-11-25 11:40:04 +00:00

7 lines
116 B
PHP

<?php
header( 'Content-Type: image/png' );
include 'phpqrcode.php';
QRcode::png($_GET['d'], false, "M", 10, 2);
?>