PHP Classes

File: libs/mPDF/qrcode/index.php

Recommend this page to a friend!
  Classes of Laudir Bispo   PHP Real Estate Website   libs/mPDF/qrcode/index.php   Download  
File: libs/mPDF/qrcode/index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Real Estate Website
Manage the properties of a real estate business
Author: By
Last change:
Date: 3 years ago
Size: 2,069 bytes
 

Contents

Class file image Download
<?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');
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
    <head>
        <title>Spipu Qrcode <?php echo __CLASS_QRCODE__; ?></title>
        <meta name="Title" content="Spipu - Qrcode <?php echo __CLASS_QRCODE__; ?>" >
        <meta name="Description" content="Spipu - Qrcode <?php echo __CLASS_QRCODE__; ?>" >
        <meta name="Keywords" content="spipu">
        <meta name="Author" content="spipu" >
        <meta name="Reply-to" content="webmaster@spipu.net" >
        <meta name="Copyright" content="(c)2009 Spipu" >
        <meta http-equiv="Content-Type" content="text/html; charset=windows-1252" >
        <style type="text/css">
<!--
table.qr
{
    border-collapse: collapse;
    border: solid 1px black;
    table-layout: fixed;
}

table.qr td
{
    width: 5px;
    height: 5px;
    font-size: 2px;
}

table.qr td.on
{
    background: #000000;
}
-->
        </style>
    </head>
    <body>
        <center>
            <form method="GET" action="">
                <textarea name="msg" cols="40" rows="7"><?php echo htmlentities($msg); ?></textarea><br>
                Correction d'erreur :
                <select name="err">
                    <option value="L" <?php echo $err=='L' ? 'selected' : ''; ?>>L</option>
                    <option value="M" <?php echo $err=='M' ? 'selected' : ''; ?>>M</option>
                    <option value="Q" <?php echo $err=='Q' ? 'selected' : ''; ?>>Q</option>
                    <option value="H" <?php echo $err=='H' ? 'selected' : ''; ?>>H</option>
                </select> |
                <input type="submit" value="Afficher">
            </form>
            <hr>
            G?n?ration d'un tableau HTML :<br>
<?php
    $qrcode
= new QRcode(utf8_encode($msg), $err);
   
$qrcode->displayHTML();
?>
<br>
            G?n?ration d'une image PNG : <br>
            <img src="./image.php?msg=<?php echo urlencode($msg); ?>&amp;err=<?php echo urlencode($err); ?>" alt="generation qr-code" style="border: solid 1px black;">
        </center>
    </body>
</html>