header('Content-Type: text/html; charset=utf8');
/*
Genesis engine
© 2005, the que / varyform lab.
http://varyform.org.ua/portal
version 0.0.0.1
filename: index.php
timestamp: 10:30 01.10.2005
*/
include_once "core/bootstrap.core";
db_connect("mysql://hata_if_ua:&^A%DF@localhost/hata");
$page = (arg(0)!=="") ? arg(0) : "index";
switch ($page) {
case "index":
include "content/index.php";
break;
case "about":
include "content/about.php";
break;
case "products":
include "content/products.php";
break;
case "prices":
include "content/prices.php";
break;
case "tm":
include "content/tm.php";
break;
case "gb":
include "content/guestbook.php";
break;
case "info":
include "content/info.php";
break;
case "admin";
include "content/admin.php";
break;
break;
default:
$content = file_get_contents('templates/404.tpl');
theme_page($content);
//echo $content;
break;
}
?>