portfolio2019/porto/components/content_project.php
2021-05-19 12:55:06 +02:00

29 lines
968 B
PHP

<?php
$categ = '';
if(isset($_GET['categ'])){
$categ=$_GET['categ'];
}
switch($categ){
case 'web':
include_once("components/content_project_web.html");
break;
case 'as3':
include_once("components/content_project_as3.html");
break;
case 'cpp':
include_once("components/content_project_cpp.html");
break;
case 'logos':
include_once("components/content_project_logos.html");
break;
case 'java':
include_once("components/content_project_java.html");
break;
case 'muziek':
include_once("components/content_project_muziek.html");
break;
default:
echo("<article class=\"transparent blur\"><h1>404 Error</h1>Je hebt ergens een verkeerde bocht genomen of wij hebben iets fout gedaan. Sorry!</article>");
}
?>