What is PHP's answer to ASP's Response.redirect?
You did of course do a search before posting this??
http://www.phpbuilder.com/forum/archives/5/2001/1/3/6409 (This is only the first link of many returned from a 'response.redirect' search)
Try
Header("Location: $url");
where $url is the destination
(you can use Header() to send any type of HTTP response header, of course, make sure you use it before you send any HTML or whitespace to the browser)
Actually, no, and thank you for your kindness.