I would like to be able to set a global username like <anythinghere>@domain3.com
as a username value in the $usernames array (in code below). This is so that I can then go and redirect users based on domain, having already been "authenticated".
I will put example in code below.
Can i do something like $usernames = array("[email protected]", $X)
where $X = <anything-so-long-as-not-blank>@domain3.com
?
Full Code Below:
<?php
//VALIDATE USERS
$usernames = array("[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]");
$passwords = array("password1", "password2", "password3", "password4", "password5", "password6");
//REDIRECT SPECIFIC VALID USERS OR DOMAIN
function get_page($username) {
$username = strtolower($username);
switch ($username) {
case "[email protected]" : return "http://www.google.com";
case "[email protected]" : return "http://www.yahoo.com";
case "[email protected]" : return "http://www.stackoverflow.com";
case "[email protected]" : return "http://www.serverfault.com";
}
return preg_match('/@domain3\.com$/',$username) ?
"http://www.backblaze.com" : "DefaultBackupPage.php";
}
$page = get_page($_POST['username']);
for($i=0;$i<count($usernames);$i++)
{
$logindata[$usernames[$i]]=$passwords[$i];
}
$found = 0;
for($i=0;$i<count($usernames);$i++)
{
if ($usernames[$i] == $_POST["username"])
{
$found = 1;
}
}
if ($found == 0)
{
header('Location: login.php?login_error=1');
exit;
}
if($logindata[$_POST["username"]]==$_POST["password"])
{
session_start();
$_SESSION["username"]=$_POST["username"];
header('Location: '.$page);
exit;
}
else
{
header('Location: login.php?login_error=1');
exit;
}
?>
@inhan Has already helped me like a champ. I am wondering if any one can get me over the line? Cheers!