What is the PHP equivalent to ASP's Response.Redirect?
I.E. How do I do:
Code:
<% Response.Redirect "http://www.mralston.co.uk/" %>
in PHP?

I tried doing it with headers:
Code:
<? header("HTTP/1.0 302 Object Moved\nLocation http://www.mralston.co.uk/"); ?>
but I just got an internal server error.

So what's the proper way to do it?