07-11-2009, 09:12 PM
|
#2 (permalink)
|
|
The Addict
Join Date: Jun 2008
Posts: 335
Thanks: 2
|
$_POST is what is known as a superglobal and contains what is known as post data which is ordinarily sent via form submition.
isset is a function used to check if a variable has been set or not
In this case we're checking if a value has not been set for the $_POST['submit'] and if it's not preform the actions lying betwixt the brackets.
|
|
|
|