The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.
New Question: How do you get rid of those irritating "You are about to resend POSTDATA messages"?
session_start();
if (isset($_SESSION['loggedin']) && $_SESSION['loggedin'] == true)
{
header("Location: asindex.php");
}
?>
Thats at the top of the login page, it checks to see if the user is logged in already (if they are go to asindex.php, otherwise display the login page)
New Question: How do you get rid of those irritating "You are about to resend POSTDATA messages"?