Insert values in database with radio button in HTML and PHP
Insert values in the database with radio button in HTML and PHP
In this tutorial, we will try to understand the program of inserting the values in the database with radio button in HTML and PHP.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<?php mysql_select_db('gender',mysql_connect('localhost','root','')); ?> <form method="post"> Gender: <input type="radio" name="zz" value="male"> Male<br> <input type="radio" name="zz" value="female">
Female<br> <input type="submit" name="gender" value="car" /> </form> <?php if(isset($_POST['gender'])) { $a=$_POST['zz']; mysql_query("insert into student(gender) VALUES('$a')"); header('location:gender.php'); } ?> |