[eluser]Paul Rose[/eluser]
[quote author="solepixel" date="1335279790"]Because url.com/?foo is not the same as url.com/?bar when it comes to:
Code:
function get($foo){
if(isset($_GET[$foo])){
return $_GET[$foo]; // url.com/?foo=
}
return FALSE; // url.com/?bar
}
[/quote]
/?foo would be exactly the same as /?bar
/?foo= wouldntbe be the same as /?bar I imagine...