$_page = $_GET['page'];
switch($_page){
case 'about':
include('page/about.php');
break;
case 'licenses':
include('page/licenses.php');
break;
case 'products':
include('page/products.php');
break;
case 'career':
include('page/career.php');
break;
case 'subsidiary':
include('page/subsidiary.php');
break;
case 'project':
include('page/project.php');
break;
case 'contact':
include('page/contact.php');
break;
default:
}
?>
/*
*/ ?>