I want to be able to distinguish between existing query string parameters set to null, and missing parameters. So the parts of the question are:
Thanks
if (isset($_REQUEST['param']))
{
// param was set in the query string
if(empty($_REQUEST['param']))
{
// query string had param set to nothing ie ?param=¶m2=something
}
}