All pastes #625908 Raw Edit

Someone

public text v1 · immutable
#625908 ·published 2007-07-19 08:15 UTC
rendered paste body
<?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');
?>