Gratis
include("tamplate/header.inc.php");
switch(@$_GET['m']):
case "contacts":
include("tamplate/contacts.inc.php");
break;
case "code":
include("tamplate/code.inc.php");
break;
case "list":
include("tamplate/list.inc.php");
break;
case "basket":
include("tamplate/basket.inc.php");
break;
case "order":
include("tamplate/order.inc.php");
break;
case "registration":
include("tamplate/registration.inc.php");
break;
case "about":
include("tamplate/about.inc.php");
break;
case "prod":
include("tamplate/prod.inc.php");
break;
case "pages":
include("tamplate/pages.inc.php");
break;
default:
include("tamplate/main.inc.php");
break;
endswitch;
include("tamplate/footer.inc.php");
?>