In PHP, you can use the header() function to send the "Location" header to the client's browser. For example:
header("Location: other_page.php");
You need to call this function BEFORE any output has been sent to the browser; HTTP headers are always sent before any HTML content.
If you'd prefer, you can also use javascript or a meta refresh tag. Lots of examples of these, just search for them:
http://www.google.com/search?q=javascript+refresh
http://www.google.com/search?q=meta+refresh
Take care,
Nik
http://www.bigaction.org/