Einchecken des Online-Codes

This commit is contained in:
2017-05-07 14:37:49 +00:00
parent 9c1d71cea6
commit 85cc95c574
635 changed files with 76260 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
if (!in_array("Rechte", $_SESSION['Rechte'])) {
exit(ZUGRIFF_ERROR);
}
if (!isset($_SESSION['ID'])) {
} else {
echo "<h1>Maklerstatistik</h1>\n";
if (!isset($_POST['action'])) {
include "inhalte/statistik/makler_over.php";
} else {
if ("Anzeigen" == $_POST['action']) {
include "inhalte/statistik/makler_view.php";
} else {
include "inhalte/statistik/makler_over.php";
}
}
}
?>