Servus!
das könnte man zum beispeil mit einer if-else machen:
if ($_GET['seite'] == "admin") {
include "admin.html";
}
elseif ($_GET['seite'] == "home") {
include "home.html";
}
else {
include "error_404.html";
}
oder mit einer switch-case anwendung:
switch($seite) {
case "admin":
include "admin.html";
break;
case "home":
include "home.html";
break;
default:
include "error_404.html";
}
ciao morpheuz