|
include "menumenu.php"; ?> |
$intro = 0;
// if($_SERVER['REMOTE_ADDR'] == '31.146.139.180'){
// var_dump($action);
// }
if($action <> "page" and $action <> "sitemap" and $action <> "projects_archive" and $action <> "projects"
and $action <> "thanks" and $action <> "photogallery" and $action <> "gallery" and $action <> "videogallery" and $action <> "video"
and $action <> "news_archive" and $action <> "news" and $action <> "list_archive" and $action <> "list"
and $action <> "search" and $action <> "det_action" and $action <> "photogallery_view"
and $action <> "certification"
// and $action <> "map" and $action <> "map_region"
and $action <> "statistics" and $action <> "0"){
$intro = 1;
}
if($action == "thanks"){
include "thanks.php";
}
if($action == "0" or $intro == 1){
include "intro.php";
}
if($action == "news"){
include "news.php";
}
if($action == "det_other"){
include "det_other.php";
}
if($action == "news_archive"){
include "news_archive.php";
}
if($action == "projects"){
include "projects.php";
}
if($action == "projects_archive"){
include "projects_archive.php";
}
if($action == "page"){
include "page.php";
}
if($action == "search"){
include "search.php";
}
if($action == "video"){
include "video.php";
}
if($action == "videogallery"){
include "videogallery.php";
}
if($action == "gallery"){
include "photogallery.php";
}
if($action == "photogallery_view"){
include "photogallery_view.php";
}
if($action == "photogallery"){
include "photogallery1.php";
}
if($action == "sitemap"){
include "site_map.php";
}
if($action == "list"){
include "list.php";
}
if($action == "list_archive"){
include "list_archive.php";
}
if($action == "map"){
include "map.php";
}
// if($action == "map_region"){
// include "map.php";
// }
if($action == "statistics"){
include "statistics.php";
}
if($action == "certification"){
include "certification.php";
}
// if($_SERVER['REMOTE_ADDR'] == '31.146.139.180'){
// var_dump($action);
// }
?> |
|