Initial commit from online.

This commit is contained in:
2023-12-28 12:13:55 +01:00
commit b65644f3e0
235 changed files with 4060 additions and 0 deletions

5
admin/inc/config.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
include "funktionen.php";
include "variablen.php";
include "konstanten.php";
?>

6
admin/inc/funktionen.php Normal file
View File

@@ -0,0 +1,6 @@
<?php
// Die Datei inc/funktionen.php
?>

7
admin/inc/konstanten.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
// konstanten.php
define('MYSQL_HOST', 'localhost');
define('MYSQL_USER', 'web104');
define('MYSQL_PASS', 'lmaa,dw.');
define('MYSQL_DATABASE', 'usr_web104_1');
?>

19
admin/inc/variablen.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
// Die Leeren Arrays erzeugen
$dateien = array();
$links = array();
// Das Array für die Inhaltsseite mit den entsprechenden Dateien füllen
$dateien['fotos'] = "fotos.php";
$dateien['angebote'] = "angebote.php";
$dateien['gb'] = "gb.php";
$dateien['kal'] = "kal.php";
$dateien['preise'] = "preise.php";
$dateien['will'] = "will.php";
// Das Array für die linke Navigation mit den entsprechenden Dateien füllen
$links['fotos'] = "links/fotos.php";
$links['kal'] = "links/kal.php";
$links['preise'] = "links/preise.php";
?>