I'm trying to figure out how to do a page redirect to a relative path. This what I have:
[PHP]header ("location: Home.php");[/PHP]
but Home.php is one level up where the code is. I thought i could just type:
[PHP]header ("location: ..\Home.php");[/PHP]
but of course this didn't work. Any help?
[PHP]header ("location: Home.php");[/PHP]
but Home.php is one level up where the code is. I thought i could just type:
[PHP]header ("location: ..\Home.php");[/PHP]
but of course this didn't work. Any help?
Comment