PHP Redirect - Redirect Script?

PHP Redirect Function

header('Location:  destination.php');
exit();
 
ou need the Location: part so the browser knows what header it's 
receiving. Also, don't forget to 
do an exit() or die() right after the redirect.