How to make a redirect link ?
i have use the php code like below this but it's not work, any body know what the problem ?
jump.php
<?PHP
header ('Location : nextfile.php');
?>
nextfile.php
<?PHP
echo "Testing page";
?>
but why the script won't jump to the nextfile.php page ? is that my coding wrong or something wrong ?
is there any way to make a jump page ??