Posted by Colin McKinnon on 04/02/06 23:30
S.Voll wrote:
>
> I am confused. I want to open a php file and find myself redirected on
> another.
<snip>
>
> <?php
>
> header(Location: http://127.0.0.1/file2.php);
>
You're missing some quotes around the function argument there
header("Location: http://127.0.0.1/file2.php");
- if you're not seeing an error you should probably take the time to work
out why not instead of asking hre every time it don't work too.
C.
[Back to original message]
|