Topic: Using request_uri safely
Am I correct in assuming that using something along the lines of:
$redirect_url = $_SERVER['REQUEST_URI'];
for login redirection would be something akin to bending over and waiting patiently? Is there any way to parse/use that safely, so that if http_referer isn't set, there is some way to forward them to the page they actually requested, after login?
Cheers.