Gustav Wiberg wrote:
I think this question has been on the list before, but I can't find it.
I want to do like this:
<script language="Javascript">
parent.mainFrame.location = 'fire.php';
</script>
...but in PHP with the HEADER() - function...
Not that hard to find... http://php.net/header
header('Location: http://www.example.com/fire.php');
You should put the full URI, including http:// and your domain. Not
doing so violates the HTTP spec.
If you want to signal that the resource has permanently moved, put this
before the above call:
header('HTTP/1.1 301 Moved Permanently');
--
Jasper Bryant-Greene
Freelance web developer
http://jasper.bryant-greene.name/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php