Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<?php
header("Location: http://www.mdnetwork.de/diqa/index.php?sid=".session_id());
?>
<?php
if (isset($_POST['Submit']) && !isset($error_style)) { // Wenn Formular abgesendet und Eingaben ok
session_start();
$_SESSION['Vorname'] = $vorname;
$_SESSION['Nachname'] = $nachname;
$_SESSION['Passwort'] = $md5passwort;
echo "<br>";
header("Location: index.php?seite=Home&sid=".session_id());
echo "Sollte die automatische Weiterleitung nicht funktionieren,<br>";
echo "dann drücke bitte <a href='index.php?seite=Home&sid=".session_id()."'>hier</a>.<br>";
exit;
}
?>
@threadi:
Cookies möchte ich nach möglichkeit nicht verwenden. Wie schon Asterixus sagte nicht jeder hat die Cookies aktiviert.