Skip to content

Instantly share code, notes, and snippets.

@nasirkhan
Last active April 6, 2016 11:16
Show Gist options
  • Save nasirkhan/6711689 to your computer and use it in GitHub Desktop.
Save nasirkhan/6711689 to your computer and use it in GitHub Desktop.
php and javascript page reditect
$url = "index.php";
redirect($url);
function redirect($url) {
if (headers_sent()) {
die('<script type="text/javascript">window.location.href="' . $url . '";</script>');
} else {
header('Location: ' . $url);
die();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment