I'm current at work thinking about the code I'll write when I get home. My problem is that I've created a login page and I want it to display information according to the login used. I think I wanna grab the contents of the 'username' field from the DB and tell it to select information according to what the 'username' is. Does that sound right?
It will be something like this:
if($uNames == jdoe){
$sql_client = SELECT * FROM dbname WHERE name = "john doe";
}
else if($uNames == jadoe){
$sql_client = SELECT * FROM dbname WHERE name = "jane doe";
}
and so on...........
Thanks in advance!