Files
homepage/inhalt.php
2023-12-28 13:31:44 +01:00

7 lines
158 B
PHP

<?php
if (isset($_GET['section']) and isset($dateien[$_GET['section']])) {
include $dateien[$_GET['section']];
} else {
include $dateien['will'];
}
?>