Is there a PHP equivalent to the ASP Response.Redirect() method?
I'm not sure what functionality it provides you, but you can achieve redirection by using the PHP [MAN]header[/MAN] function. Call it with:
header("Location: [url]http://www.newsite.com[/url]");
-- Gary