" isset Determine if a variable is set and is not NULL . "
Suppose we have a HTML form and we want to know whether that form has been submitted or not we have to do a basic simple step .
if (isset($_POST["submit"])
{ write something here }
This means everytime if the value of form is set then it will work.
0 Comment(s)