if(isset($_GET['section'])){
switch ($_GET['section']){
case 'showcase':
include("section/showcase.php");
break;
case 'contact':
include("section/kontakt.php");
break;
case 'gallery':
include("section/gallery.php");
break;
case 'advertisements':
switch($_GET['id']){
case 3:
include("section/advertisements1.php");
break;
case 6:
include("section/advertisements2.php");
break;
}
break;
break;
default:
include('section/main.php');
break;
}
}else{
include('section/main.php');
}
?>