Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

28 řádky
974 B

  1. <?php
  2. define('IN_CB', true);
  3. include('include/header.php');
  4. registerImageKey('code', 'BCGcodabar');
  5. $characters = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-', '$', ':', '/', '.', '+', 'A', 'B', 'C', 'D');
  6. ?>
  7. <div id="validCharacters">
  8. <h3>Valid Characters</h3>
  9. <?php foreach ($characters as $character) { echo getButton($character); } ?>
  10. </div>
  11. <div id="explanation">
  12. <h3>Explanation</h3>
  13. <ul>
  14. <li>Known also as Ames Code, NW-7, Monarch, 2 of 7, Rationalized Codabar.</li>
  15. <li>Codabar was developed in 1972 by Pitney Bowes, Inc.</li>
  16. <li>This symbology is useful to encode digital information. It is a self-checking code, there is no check digit.</li>
  17. <li>Codabar is used by blood bank, photo labs, library, FedEx...</li>
  18. <li>Coding can be with an unspecified length composed by numbers, plus and minus sign, colon, slash, dot, dollar.</li>
  19. </ul>
  20. </div>
  21. <?php
  22. include('include/footer.php');
  23. ?>