|
<?php
|
|
set_include_path('php/');
|
|
session_start();
|
|
|
|
include 'sonderzeichen.php';
|
|
include 'errorlog.php';
|
|
include 'funktionen.php';
|
|
if (isset($_GET['aktion'])){
|
|
eval('include "'.$_GET['aktion'].'.php";');
|
|
}else{
|
|
eval('include "'.$_POST['aktion'].'.php";');
|
|
}
|
|
?>
|