Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

48 linhas
1.1 KiB

  1. <?php
  2. define('IN_CB', true);
  3. include('include/header.php');
  4. registerImageKey('code', 'BCGpostnet');
  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>Used to encode enveloppe in USA.</li>
  15. <li>
  16. You can provide
  17. <br />5 digits (ZIP Code)
  18. <br />9 digits (ZIP+4 code)
  19. <br />11 digits (ZIP+4 code+2 digits)
  20. <br />(Those 2 digits are taken from your address. If your address is 6453, the code will be 53.)
  21. </li>
  22. </ul>
  23. </div>
  24. <script>
  25. (function($) {
  26. "use strict";
  27. $(function() {
  28. var thickness = $("#thickness")
  29. .val(9)
  30. .removeAttr("min step")
  31. .prop("disabled", true);
  32. $("form").on("submit", function() {
  33. thickness.prop("disabled", false);
  34. });
  35. });
  36. })(jQuery);
  37. </script>
  38. <?php
  39. include('include/footer.php');
  40. ?>