Okay. I have studied the links you sent along for this issue...each user name/passowrd goes to a different page....and unfortunately, I'm still confused.
This code:
Code:
<? include("protection.php"); ?>
<?
if (file_exists("$loginname.php"))
include("$loginname.php");
else if (file_exists("$loginuser.php"))
include("$loginuser.php");
else
echo "No user file found! - $loginuser";
?>
goes on each protected page? The settings.php doesn't change?
What I would like is: after username and password are entered from the login page, to go to their corresponding page.
How do I do that?
Thanks,
Con