選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

27 行
821 B

  1. <?php
  2. define('IN_CB', true);
  3. include('include/header.php');
  4. registerImageKey('code', 'BCGisbn');
  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>ISBN stands for International Standard Book Number.</li>
  15. <li>ISBN type is based on EAN-13.</li>
  16. <li>Previously, all ISBN were in EAN-10 format. EAN-13 uses the same encoding but may contain different data in the ISBN number.</li>
  17. <li>Composed by a GS1 prefix (for ISBN-13), a group identifier, a publisher code, an item number and a check digit.</li>
  18. </ul>
  19. </div>
  20. <?php
  21. include('include/footer.php');
  22. ?>