What is the PHP equivalent to ASP's Response.Redirect?
I.E. How do I do:
in PHP?Code:<% Response.Redirect "http://www.mralston.co.uk/" %>
I tried doing it with headers:but I just got an internal server error.Code:<? header("HTTP/1.0 302 Object Moved\nLocation http://www.mralston.co.uk/"); ?>
So what's the proper way to do it?




Reply With Quote