Guest User

Untitled

a guest
Dec 15th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <?php
  2. echo "<label>Please select the Competition:&nbsp;&nbsp;<select name='opt'>";
  3. while ($row = mysqli_fetch_array($result)) {
  4. echo "<option value='" . $row['comp_id'] ."'>" . $row['compname'] ."</option>";
  5. }
  6. echo "</select></label>";
  7. print_r($row['comp_id']);
  8. ?>
  9.  
  10. <input type="text" name="comp_id" placeholder=" (the value from the selected item ">
Add Comment
Please, Sign In to add comment