<?php
switch ( $_GET['title'] )
{
case "view":
$content="view.php";
$location="View Information";
break;
case "about":
$content="about.php";
$location="About";
break;
case "backup":
$content="backup.php";
$location="Backup Information";
break;
case "fullview":
$content="view-full.php";
$location="View Full Information";
break;
case "google":
$content="googlemaps.php";
$location="Location";
break;
case "email":
$content="email.php";
$location="email";
break;
case "emailGroup":
$content="email-group.php";
$location="email group";
break;
case "groupForm":
$content="group-form.php";
$location="group form";
break;
case "sent":
$content="sent.php";
$location="Message Sent";
break;
case "sentGroup":
$content="sentGroup.php";
$location="Message Sent";
break;
case "add":
$content="add.php";
$location="Add Information";
break;
case "search":
$content="search.php";
$location="Search DB";
break;
case "edit":
$content="edit.php";
$location="Edit Information";
break;
case "delete":
$content="delete.php";
$location="Delete Information";
break;
case "delete-groupe":
$content="delete-groupe.php";
$location="Delete Information";
break;
case "confirm":
$content="confirm.php";
$location="Delete Conframation";
break;
case "logout":
$content="manage-logout.php";
$location="Log Out";
break;
case "login":
$content="manage-login.php";
$location="Log In";
break;
case "deny":
$content="deny.php";
$location="Not Loged-in";
break;
case "profile":
$content="profile.php";
$location="Edit Profile";
break;
default:
$content="home.php";
$location="Dashboard";
break;
}
?>