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

18
redir.php Executable file
View File

@@ -0,0 +1,18 @@
<?php
@session_start();
require_once( "f_admin.php" );
require_once( "f_wfl.php" );
$phpziel = liefere_konfig( $_POST[ "ziel" ] );
xlog(4, $phpziel );
if ( strlen( $phpziel ) > 0 )
{
header("Location: ".$phpziel.".php");
}
else
{
header("Location: su_uebersicht.php");
}
?>