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.
 
 
 
 
 
 

36 lines
963 B

  1. <?php
  2. define('IN_CB', true);
  3. include('include/header.php');
  4. registerImageKey('code', 'BCGupca');
  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>Encoded as EAN-13.</li>
  15. <li>Most common and well-known in the USA.</li>
  16. <li>There is 1 number system (NS), 5 manufacturer code, 5 product code and 1 check digit.</li>
  17. <li>
  18. NS Description :
  19. <br />0 = Regular UPC Code
  20. <br />2 = Weight Items
  21. <br />3 = Drug/Health Items
  22. <br />4 = In-Store Use on Non-Food Items
  23. <br />5 = Coupons
  24. <br />7 = Regular UPC Code
  25. <br />And other are Reserved.
  26. </li>
  27. </ul>
  28. </div>
  29. <?php
  30. include('include/footer.php');
  31. ?>