Skip to content

Instantly share code, notes, and snippets.

@casperwilkes
Created February 22, 2016 17:11
Show Gist options
  • Save casperwilkes/c8d74dbf7d56f4038270 to your computer and use it in GitHub Desktop.
Save casperwilkes/c8d74dbf7d56f4038270 to your computer and use it in GitHub Desktop.
Simple redirect function for php
/**
* Redirection header.
* @param string $location Where to send user to.
*/
function redirect($location = NULL) {
if ($location != NULL) {
header("Location: {$location}");
exit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment