Skip to content

Instantly share code, notes, and snippets.

@vic3256
Created July 11, 2014 18:38
Show Gist options
  • Save vic3256/f97c2688d6d2672972d7 to your computer and use it in GitHub Desktop.
Save vic3256/f97c2688d6d2672972d7 to your computer and use it in GitHub Desktop.
Current page php
<?php
$currentUrl = $_SERVER['REQUEST_URI'];
if($currentUrl == '/franchisee-success.php'){
echo '/seven-steps.php';
}else if($currentUrl == '/seven-steps.php'){
echo '/webinar.php';
}else if($currentUrl == '/webinar.php'){
echo '/go-bold.php';
}else{
echo '/franchisee-success.php';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment