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';
}
?>