Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <form method="post" action="process.php">
  2. <ul class="choices">
  3. <li><input name="choice" type="radio" value="1"> <?php echo $row['choice1']; ?> </li>
  4. <li><input name="choice" type="radio" value="2"> <?php echo $row['choice2']; ?> </li>
  5. <li><input name="choice" type="radio" value="3"> <?php echo $row['choice3']; ?> </li>
  6. <li><input name="choice" type="radio" value="4"> <?php echo $row['choice4']; ?> </li>
  7. </ul>
  8.  
  9. <input type="submit" value="Submit" />
  10. <input type="hidden" name="number" value="<?php echo $number; ?>" />
  11. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement