PHP Demo
PHP Code
Output
A demo of $_POST with Bootstrap
Name:
Gender:
Male
Female
Email:
Password:
Address:
You entered following data!
< ?php $post_name=$_POST["postname"]; $post_gender=$_POST["postgender"]; $post_email=$_POST["postemail"]; $post_password=$_POST["postpassword"]; $post_address=$_POST["postaddress"]; if( $post_name ) { echo "Name entered is: ". $post_name ."
"; echo "Gender:" .$post_gender ."
"; echo "Email:" .$post_email ."
"; echo "Password:" .$post_password ."
"; echo "Address:" .$post_address ."
"; } ?>
A demo of $_POST with Bootstrap
Name:
Gender:
Male
Female
Email:
Password:
Address:
You entered following data!