@olaf, could it be a future feature ? if one want a simpler check just using session ?
or is it already there ? using the $_SESSION['logged_in'] variable and just checking it ?
session_start(); if (!$_SESSION['logged_in']) { header ("Location: login.php"); }
sure you can use that session or just the other session's, but as Nick already mentioned session's are not really safe. Thats why I added an alternative session handler (this suggestion comes from official PHP people).
Trackback URI for this entry : http://www.webdigity.com/trackback.php?topic=5965