$location = $_GET['location'];
if ($location == "")
{ return "you inputted : nothing"; }
else
{
$output =
<<<END
you inputted : {$location}
END;
}
return $output;
What this does is take whatever is after ?location=blah and put the blah bit in my page.
What I want to do is have if the customer puts ?location=hidden then it will show different content based on it, so
if location = hidden then show <b>Hidden Stuff Here</b> else show what was put after the url.
Can you help?











