PHP Isset

The isset() function simply tests whether or not a variable has been set.

If the variable has been set (defined), then isset is TRUE. If the variable has not been set, isset is FALSE.

A good example of the isset function in action is shown on the PHP mail function page.