Someone
public text v1 · immutable<?php
include('header.php');
include('sideleft.php');
switch ($_GET['act']) {
case "1": include('files.php');
break;
case "2": include('request.php');
break;
case "3": include('contact.php');
break;
case "4": include('staff.php');
break;
default: include('main.php');
break;
}
include('sideright.php');
include('footer.php');
?>