Advertisement
Guest User

Untitled

a guest
May 24th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.71 KB | None | 0 0
  1.     <form action="index.php?action=loadChapter&amp;chapterId=<?=$chapterId; ?>" class="loadChapter" class="loadChapter" method="post">
  2.  
  3.  
  4.             <SELECT name="chapterTitle"  class='chapterTitle'>
  5.                 <option>Choose a chapter</option>
  6.                 <?php while($drop = $dropList->fetch())
  7.                 {
  8.                     $chapterId = $drop['id'];
  9.             $chapterTitle = $drop['title'];
  10.                     ?>
  11.                     <option value="<?=$chapterId;?>"><?=$chapterTitle; ?></option>
  12.                     <?php
  13.                 }
  14.                 ?>
  15.             </SELECT>
  16.             <input type="submit" name="loadButton" class="loadButton" value="Load Chapter">
  17.         </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement