Hi all,
I want to use 'location' to redirect to link to another page:
<?php
header("Locatio n: http://localhost");
?>
works fine, but when i introduce start_session, all i get is a blank page:
<?php
session_start() ;
header("Locatio n: http://localhost");
?>
Can anyone give me a hint, do I need to change my php.ini-file or something
like that?? I use apache and php 4.3.1, local installed.
Thanx!!
WJ
I want to use 'location' to redirect to link to another page:
<?php
header("Locatio n: http://localhost");
?>
works fine, but when i introduce start_session, all i get is a blank page:
<?php
session_start() ;
header("Locatio n: http://localhost");
?>
Can anyone give me a hint, do I need to change my php.ini-file or something
like that?? I use apache and php 4.3.1, local installed.
Thanx!!
WJ
Comment