BioTorrents.de’s version of Gazelle
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.

torrent_form.class.php 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php ?>
  2. <!-- Three container fields -->
  3. <tr id="container_tr">
  4. <td class="label">
  5. Format
  6. <strong class="important_text">*</strong>
  7. </td>
  8. <td>
  9. <select name="container">
  10. <option value="Autofill">Autofill</option>
  11. <?php
  12. foreach ($this->Containers as $Name => $Container) {
  13. echo "<option value='$Name'>$Name</option>\n";
  14. } ?>
  15. </select><br />
  16. Data file format, or detect from file list
  17. </td>
  18. </tr>
  19. <!-- 2 -->
  20. <tr id="container_games_tr">
  21. <td class="label">
  22. Format
  23. <strong class="important_text">*</strong>
  24. </td>
  25. <td>
  26. <select id="container" name="container">
  27. <option value="Autofill">Autofill</option>
  28. <?php
  29. foreach ($this->ContainersGames as $Name => $Container) {
  30. echo "<option value='$Name'>$Name</option>\n";
  31. } ?>
  32. </select><br />
  33. Data file format, or detect from file list
  34. </td>
  35. </tr>
  36. <!-- 3 -->
  37. <tr id="container_prot_tr">
  38. <td class="label">
  39. Format
  40. <strong class="important_text">*</strong>
  41. </td>
  42. <td>
  43. <select id="container" name="container">
  44. <option value="Autofill">Autofill</option>
  45. <?php
  46. foreach ($this->ContainersProt as $Name => $Container) {
  47. echo "<option value='$Name'>$Name</option>\n";
  48. } ?>
  49. </select><br />
  50. Data file format, or detect from file list
  51. </td>
  52. </tr>