gpExists
The PHP function gpExists checks to see if the requested variable is inside
the Get/Post parameters.
string $key - Requested variable name
boolean - returns true if the variable exists, false if it does not.
function gpExists($key) {
return isset($GLOBALS["AG"]["clean"][$key]);
}