PluginProbe
PDF & Print by BestWebSoft – WordPress Posts and Pages PDF Generator Plugin / trunk
PDF & Print by BestWebSoft – WordPress Posts and Pages PDF Generator Plugin vtrunk
trunk 1.5 1.6 1.7 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 1.7.7 1.7.8 1.7.9 1.8.0 1.8.1 1.8.2 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9.0 1.9.1 All 71 releases
pdf-print / mpdf / qrcode / image.php

image.php in PDF & Print by BestWebSoft – WordPress Posts and Pages PDF Generator Plugin trunk, at mpdf/qrcode/image.php

14 lines 368 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 $msg = isset($_GET['msg']) ? $_GET['msg'] : '';
3 if (!$msg) $msg = "Le site du spipu\r\nhttp://spipu.net/";
4
5
6 $err = isset($_GET['err']) ? $_GET['err'] : '';
7 if (!in_array($err, array('L', 'M', 'Q', 'H'))) $err = 'L';
8
9 require_once('qrcode.class.php');
10
11 $qrcode = new QRcode(utf8_encode($msg), $err);
12 $qrcode->disableBorder();
13 $qrcode->displayPNG(200);
14