My logout in the menu calls a simple blank app with this code:
[user_name] = "";
$cookie_name = $_SESSION['app']['cookie_name'];
if ([var_DeleteCookie] == 1)
{
//
// Cookie f?r Autologin l?schen bzw. ung?ltig machen
//
ob_start();
// Passwort ist schon MD5 verschl?sselt
$tmparray = array("", "", 0, 0);
$mycookie = implode("|", $tmparray);
$expirytime = time() - (60*15);
setcookie($cookie_name, $mycookie, $expirytime, "/");
ob_end_flush();
}
$link = "<input type=\"button\" value=\"K-I-S neu starten\" name=\"button_kisrestart\" onclick=\"window.location='../code_Autostart/';\">";
print_r([app_title] . " beendet ...<br/><br/>" . $link);
This shows a blank screen with the message, that you exit the app and a button with that you can simply re-enter the app.