I am still learning PHP and have read and tried many different things but can't get any of them to work. I need help with this one, PLEASE!
I have a working login script that uses PHP and a database for my login. My database has a table name clientpage with fields id, username, password, clientpage. When the user logs in they are redirected to userarea.php.
header("Location: userarea.php")
What I need to know is how I can redirect each one of my clients to their own page depending on the username they enter. The clients pages are very unique so I can't redirect to the same page and just change the data.
Example:
id - 1
username - cologicsystems
password - secret1
clientpage - client1.php
id - 2
username - nocore
password - secret2
clientpage - client2.php
and so on...... PLEASE HELP. I need this to work in 2 days. Thank you
MY PAGES
login.php
<?php
include 'functions.php';
if (loggedin())
{
header("Location: userarea.php");
exit();
}
if($_POST['login'])
{
$username = $_POST['username'];
$password = $_POST['password'];
$rememberme = $_POST['rememberme'];
if ($username&&$password)
{
$login = mysql_query("SELECT * FROM users WHERE username='$username'");
while ($row = mysql_fetch_assoc($login))
{
$db_password = $row['password'];
if ($password==$db_password)
$loginok = TRUE;
else
$loginok = FALSE;
}
if ($loginok==TRUE)
{
if ($rememberme=="on")
setcookie("username", $username, time()+7200);
else if ($rememberme=="")
$_SESSION['username']=$username;
header("Location: userarea.php");
exit();
}
else
echo "Username/password combination incorrect.<p />";
}
else
die("Hit back and enter a username and password.");
}
?>
<form action="login.php" method="POST">
Username:<br/>
<input type="text" name="username"><p />
Password:<br/>
<input type="password" name="password"><p />
<input type="checkbox" name="rememberme"> Authorized user<br /><br />
<input type="submit" name="login" value="Log in">
</form>
functions.php
<?php
//session
session_start();
// connect to database
$connect = mysql_connect("localhost","arc_robert","arc") or die("Could not connect");
mysql_select_db("arc_rememberme") or die("Could not find db");
//login check function
function loggedin()
{
if (isset($_SESSION['username'])||isset($_COOKIE['username']))
{
$loggedin = TRUE;
return $loggedin;
}
}
?>
userarea.php
<?php
include 'functions.php';
if (!loggedin())
{
header("Location: login.php");
exit();
}
?>
You are logged in!<p />
<a href="logout.php">Log out</a>
logout.php
<?php
session_start();
//destroy session
session_destroy();
//unset cookies
setcookie("username","",time()-7200);
header("Location: login.php");
?>
[attachment deleted by admin]