PHP Classes

File: libs/Barcode/html/BCGcodabar.php

Recommend this page to a friend!
  Classes of william amed   Raptor 2   libs/Barcode/html/BCGcodabar.php   Download  
File: libs/Barcode/html/BCGcodabar.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Raptor 2
Framework that takes routes from annotations
Author: By
Last change:
Date: 7 years ago
Size: 974 bytes
 

Contents

Class file image Download
<?php
define
('IN_CB', true);
include(
'include/header.php');

registerImageKey('code', 'BCGcodabar');

$characters = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-', '$', ':', '/', '.', '+', 'A', 'B', 'C', 'D');
?>

<div id="validCharacters">
    <h3>Valid Characters</h3>
    <?php foreach ($characters as $character) { echo getButton($character); } ?>
</div>

<div id="explanation">
    <h3>Explanation</h3>
    <ul>
        <li>Known also as Ames Code, NW-7, Monarch, 2 of 7, Rationalized Codabar.</li>
        <li>Codabar was developed in 1972 by Pitney Bowes, Inc.</li>
        <li>This symbology is useful to encode digital information. It is a self-checking code, there is no check digit.</li>
        <li>Codabar is used by blood bank, photo labs, library, FedEx...</li>
        <li>Coding can be with an unspecified length composed by numbers, plus and minus sign, colon, slash, dot, dollar.</li>
    </ul>
</div>

<?php
include('include/footer.php');
?>