The theme is simple:
PHP Code:
$theme = $_GET['theme'];
switch($theme)
{
case "one": include('themes/one/header.htm');
break;
case "two": include('themes/two/header.htm');
break;
default: include('themes/default/header.htm');
break;
}
Just do the same at the top and bottom, at the bottom, use footer.htm instead.