Hochladen aller Dateien des Projekts.

This commit is contained in:
2024-06-13 22:21:23 +02:00
parent 8af145816f
commit 2e0cd7dee3
650 changed files with 97218 additions and 0 deletions

34
su_uebersicht.php Executable file
View File

@@ -0,0 +1,34 @@
<?php
@session_start();
if ( strlen( $_SESSION[ "benutzer_anmeldename" ] ) == 0 )
{
header("Location: index.php");
}
$_SESSION[ "title" ] = "Mandanten- und Systemverwaltung";
include( 'ssi_header.php' );
$_SESSION[ "title" ] = "";
include( "su_menu.php" );
echo "<div style='margin-left:200px; padding-bottom:30px; min-height:550px;'>";
echo '</div>';
echo "<p style='clear:both;' />";
include( 'ssi_footer.php' );
?>