Auswahlcards erstellt

This commit is contained in:
aschwarz
2023-11-07 09:29:22 +01:00
parent f9c22d6369
commit 31023adb93
3 changed files with 216 additions and 1 deletions

14
php/index.php Normal file
View File

@ -0,0 +1,14 @@
<?php
## INDEX gegen DB
if(!isset($_SESSION)) { session_start(); }
include_once '../config/smarty.php';
$smarty = new SmartyAdmin();
require_once("../config/datenbankanbindung.php");
$templatename = substr(basename($_SERVER['PHP_SELF']),0,-3)."html";
$smarty->assign('hs', $_SESSION['global_hs']);
$smarty->assign('stg', $_SESSION['global_stg']);
$smarty->display("$templatename");
?>