<?php
// Set the root directory
$bco_root_dir = "./../";
require($bco_root_dir . "include.php");
if (!$is_admin) {
bco_error("You are not authorized to access this page.");
}
switch ($_GET['action']) {
case "viewbanned";
require("./show_banned.php");
break;
default:
exit("No.");
break;
}
?>