You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
886 B

  1. <?php
  2. define('IN_CB', true);
  3. include('include/header.php');
  4. registerImageKey('code', 'BCGcode11');
  5. $characters = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-');
  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 USD-8.</li>
  15. <li>Code 11 was developed in 1977 as a high-density numeric symbology.</li>
  16. <li>Used to identify telecommunications equipment.</li>
  17. <li>Code 11 is a numeric symbology and its character set consists of 10 digital characters and the dash symbol (-).</li>
  18. <li>There is a "C" check digit. If the length of encoded message is greater thant 10, a "K" check digit may be used.</li>
  19. </ul>
  20. </div>
  21. <?php
  22. include('include/footer.php');
  23. ?>