Re: HEADER + target?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux