您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

BCGupcext5.php 1.0 KiB

3 年前
123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. define('IN_CB', true);
  3. include('include/header.php');
  4. registerImageKey('code', 'BCGupcext5');
  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 to encode suggested retail price.</li>
  16. <li>If the first number is a 0, the price xx.xx is expressed in British Pounds. If it is a 5, it is expressed in US dollars.</li>
  17. <li>
  18. Special Code Description:
  19. <br />90000: No suggested retail price
  20. <br />99991: The item is a complementary of another one. Normally free
  21. <br />99990: Used bh National Association of College Stores to mark "used book"
  22. <br />90001 to 98999: Internal purposes for some publishers
  23. </li>
  24. </ul>
  25. </div>
  26. <?php
  27. include('include/footer.php');
  28. ?>