<?php
// Funktionsbibliothek inkludieren
include("myfunctions.php");
set_mysession_mypath();
if (!check_mysession_data())
{
echo("<b>Fehler:</b> Seite nicht gültig <br>");
return false;
}
echo("<b>Sie sind weiter erfolgreich eingeloggt !</b><br><br>");
?>
<html>
<head>
<title>Benutzerüberprüfung mit Regular Expression, Session-ID, Funktionskapselung</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<?
// Die Inhalte der Session-Variablen stehen zur Verf�gung
show_mysession_data();
?>
<p><a href="code5a.php?<? echo(SID) ?>">zurück...</a></p>
<pre>Nachfolgender Button öffnet eine sichere ZURÜCK-Formularverlinkung</pre>
<form action="code5a.php?<? echo(SID) ?>" method="post">
<input type="submit" name="ok" value="zurück...">
</form>
<pre>Nachfolgender Button beendeet die aktuelle Session</pre>
<form action="code5c.php" method="post">
<input type="submit" name="ok" value="Session-Ende">
</form>
</body>
</html>