You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ($_SESSION['authorized'] AND (($_SESSION['username'] == DB_ADMIN_NAME) OR ($_SESSION['status'] == 'Admin'))) //check for login and make sure they are the admin
{
$list = country_list($server);
foreach ($list as $country)
{
print ($country."<br />");
}
}
else
{
print('You must <a href="login.php">login</a> as an admin, to use this page.<br />');