I'd like to set a variable based on the page or directory requested. So if sombody went to mysite.com/hello i'd want to set a variable like;
if ($_SERVER['something'] == "/hello") {
$var = 'something';
}
I thought $_SERVER['REQUEST_URI'] would do it, but it doesn't..