PHP 5 Form Handling

In previous chapter we have learned about Super Global Variables of PHP5, So as Super Global variables the $_GET & $_POST both are used to handling form after submitting.

Let us know about PHP 5 Form handling



SIMPLE PHP - HTML FORM : USING POST METHOD

FILE - MAIN.HTML

 


FILE - WELCOME.PHP



OUTPUT : 

 Before Submit : 
After Submit :


IF YOU WANT TO USE GET METHOD JUST REPLACE

method="post" with method="get" in main.html &
$_POST[" "]; with $_GET[" "]; in welcome.php

MORE PHP5 TUTORIALS

Comments