vic3256
7/11/2014 - 6:38 PM

Current page php

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