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.
 
 
 
 
 
 

25 lines
580 B

  1. <?php
  2. define('IN_CB', true);
  3. include('include/header.php');
  4. registerImageKey('code', 'BCGupcext2');
  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>Extension for UPC-A, UPC-E, EAN-13 and EAN-8.</li>
  15. <li>Used for encode additional information for newspaper, books...</li>
  16. </ul>
  17. </div>
  18. <?php
  19. include('include/footer.php');
  20. ?>