Skip to content

Instantly share code, notes, and snippets.

@Archigos
Created July 29, 2014 16:00
Show Gist options
  • Save Archigos/6f57346e40b004b6b1bd to your computer and use it in GitHub Desktop.
Save Archigos/6f57346e40b004b6b1bd to your computer and use it in GitHub Desktop.
Basic PHP Page Redirect
public function redirect($url,$sec=3) {
echo "Redirecting in $sec seconds";
echo "<meta http-equiv='refresh' content='$sec,url=$url'>";
}
/* Examples:
* redirect('http://google.com',5);
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment