I´ve added a table in my database
where I will add members..
I also have a complete
script of authentication
(login and password protection).
But I have (in this script)
if (($name == "logname") && ($password == "pword") )
{
header("Location: val.htm");
}
else {
print "<H1>Sorry, wrong username and password</H1>";
As you probably see, I got a
specific login & password.
But I want lots of people to be
able to login..
(thats why I use the table for it)
How do I get the names & password
from the table?
Thanks
/Peter