Advertisement
firoze

Validating radio buttons and checkbox in php

Oct 10th, 2015
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. // Validating radio buttons and checkbox in php
  2.  
  3.  
  4. <?php
  5. if(isset($_REQUEST['st_submit'])){ // <input type="submit" name="st_submit" />
  6. if(isset($_REQUEST['st_radio'])){ // <input type="radio" name="st_radio" />
  7. $st_radio = $_REQUEST['st_radio']; // <input type="radio" name="st_radio" />
  8. }
  9.  
  10. if(isset($_REQUEST['st_checkbox'])){ // <input type="checkbox" name="st_checkbox" />
  11. $st_checkbox = $_REQUEST['st_checkbox']; // <input type="checkbox" name="st_checkbox" />
  12. }
  13. }
  14.  
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement