You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
609 B
PHP
35 lines
609 B
PHP
<?PHP
|
|
|
|
$title = "Debug-Liste";
|
|
$header = "Datenbank-Auszug";
|
|
include ("./inc/header.php");
|
|
include ("./inc/funktion_db_list.php");
|
|
|
|
|
|
/*
|
|
echo "<h1>Raeume</h1> <br>";
|
|
funktion_db_list("Raeume");
|
|
|
|
echo "<h1>Schichtbelegung</h1> <br>";
|
|
funktion_db_list("Schichtbelegung");
|
|
|
|
echo "<h1>Schichtplan</h1> <br>Hier findest du alle bisher eingetragenen Schichten:";
|
|
funktion_db_list("Schichtplan");
|
|
|
|
echo "<h1>User</h1> <br>";
|
|
funktion_db_list("User");
|
|
|
|
echo "<h1>News</h1> <br>";
|
|
funktion_db_list("News");
|
|
|
|
echo "<h1>FAQ</h1> <br>";
|
|
funktion_db_list("FAQ");
|
|
|
|
*/
|
|
|
|
echo "Deaktiviert";
|
|
|
|
include ("./inc/footer.php");
|
|
?>
|
|
|