Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <label>CHOICE</label>
  2.  
  3. <select value="" name="choice" id="choice" required>
  4.  
  5. <option>SELECT</option>
  6.  
  7. <?php
  8. $result=mysqli_query($connection,"SELECT * FROM table_choice")or die(mysqli_error,());
  9. while($row=mysqli_fetch_array($result)){
  10. $choiceid=$row['field_choiceid'];
  11. $choicename=$row['field_choicename'];
  12. $choiceslot=$row['field_choiceslot'];
  13. ?>
  14.  
  15. <option value="<?php echo $choicename;?>">
  16.  
  17. <?php echo $choicename;?>
  18.  
  19. </option>
  20.  
  21. <?php } ?>
  22.  
  23. </select>
  24. <code>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement