7 lines
156 B
PHP
7 lines
156 B
PHP
<?php
|
|
if (isset($_GET['section']) and isset($dateien[$_GET['section']])) {
|
|
include $dateien[$_GET['section']];
|
|
} else {
|
|
include $dateien['will'];
|
|
}
|