Einchecken des Online-Codes
This commit is contained in:
20
admin/inhalte/personen/vv.php
Normal file
20
admin/inhalte/personen/vv.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
if (!isset($_SESSION['ID'])) {
|
||||
} else {
|
||||
if (!isset($_POST['action'])) {
|
||||
include "inhalte/personen/vv_over.php";
|
||||
} else {
|
||||
if (("Anlegen" == $_POST['action']) OR ("Bearbeiten" == $_POST['action'])) {
|
||||
include "inhalte/personen/vv_edit.php";
|
||||
} elseif ("Speichern" == $_POST['action']) {
|
||||
include "inhalte/personen/vv_save.php";
|
||||
} elseif ("Anzeigen" == $_POST['action']) {
|
||||
include "inhalte/personen/vv_view.php";
|
||||
} elseif (("Löschen" == $_POST['action']) OR ("Abbrechen" == $_POST['action'])) {
|
||||
include "inhalte/personen/vv_del.php";
|
||||
} else {
|
||||
include "inhalte/personen/vv_over.php";
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user