All pastes #93377 Raw Edit

Anonymous

public php v1 · immutable
#93377 ·published 2006-07-20 11:57 UTC
rendered paste body
<?phpif(!trim($_SERVER['REQUEST_URI'], "/")){	$page = $_GET['section'];}switch(strtolower($page)){		case 'home':		include_once('menu/menu1.php');		break;			case 'help':		include_once('menu/menu2.php');		break;			default:		include_once('menu/menu.php');		break;}?>