siddharth_application/application/third_party/mpdf/qrcode/image.php
venbatechnologies@gmail.com 72f35f472a dompdf changes to mpdf
2017-10-31 20:19:28 +05:30

14 lines
370 B
PHP
Executable File

<?php
$msg = isset($_GET['msg']) ? $_GET['msg'] : '';
if (!$msg) $msg = "Le site du spipu\r\nhttp://spipu.net/";
$err = isset($_GET['err']) ? $_GET['err'] : '';
if (!in_array($err, array('L', 'M', 'Q', 'H'))) $err = 'L';
require_once('qrcode.class.php');
$qrcode = new QRcode(utf8_encode($msg), $err);
$qrcode->disableBorder();
$qrcode->displayPNG(200);
?>