|
if (!isset($_GET['page'])){
$page = "home";
}else{
$page = $_GET['page'];
}
switch($page){
case "home": include('home.php'); break;
case "hl": include('hotels_and_lodges.php'); break;
case "scr": include('selfcatering_resorts.php'); break;
case "blyde": include('why_join_members.php'); break;
case "providers": include('why_join_providers.php'); break;
case "providerarea": include('providersarea.php'); break;
case "contactus": include('contactadmin.php'); break;
case "terms": include('terms.php'); break;
case "disclaimer": include('disclaimer.php'); break;
case "rewards": include('rewards.php'); break;
case "faq": include('faq.php'); break;
case "friend": include('tell_a_friend.php'); break;
case "advertise": include('advertise.php'); break;
case "r_questions": include('rateit_questions.php'); break;
case "thankyou": include('thankyou.php'); break;
case "links": include('links.php'); break;
case "contacts": include('contact_us.php'); break;
case "viewrating": include('rating.php'); break;
case "view_rating": include('rating_new.php'); break;
case "view_rating2": include('rating_new2.php'); break;
case "listings": include('search2.php'); break;
case "register": include('register_login.php'); break;
case "register_member": include('register_member.php'); break;
case "login": include('login_processor.php'); break;
case "loggedin": include('members_main.php'); break;
case "error": include('error.php'); break;
case "update": include('update.php'); break;
case "updateinfo": include('updateinfo.php'); break;
case "register2": include('register_login2.php'); break;
case "register_provider": include('register_provider.php'); break;
case "login2": include('login_processor2.php'); break;
case "loggedin2": include('provider_main.php'); break;
case "error2": include('error2.php'); break;
case "password": include('password.php'); break;
case "password2": include('password2.php'); break;
case "reset": include('reset.php'); break;
case "resetpass": include('resetpass.php'); break;
case "get": include('getpassword.php'); break;
case "get2": include('getpassword2.php'); break;
case "memberarea": include('membersarea.php'); break;
case "invite": include('invite.php'); break;
case "invitefriend": include('invitefriend.php'); break;
case "logout": include('logout.php'); break;
case "search": include('search2.php'); break;
case "search2": include('search_found2.php'); break;
case "quicksearch2": include('quick_search2.php'); break;
case "advertise2": include('advertise_contact.php'); break;
case "sendmail2": include('sendmail2.php'); break;
case "search-instructions": include('search-instructions.php'); break;
case "search-instructions2": include('search-instructions2.php'); break;
case "search3": include('search3.php'); break;
}
?>
|