This is a good redirection:
header('Location: http://www.example.com/');
exit();
?>
And this is a wrong redirection:
header('Location : http://www.example.com/');
exit();
?>
Notice a space between 'Location' and ':' this makes the redirection not to work!!!!
Simple errors likes this consume a lot of time :( , hope helps someone else...
No comments:
Post a Comment