I assume you already have your database created??
If not heres an example:
CREATE TABLE auth (
userid
int(4)
unsigned
zerofill
DEFAULT '0000'
NOT NULL
auto_increment,
username varchar(20),
userpassword varchar(20),
PRIMARY KEY (userid)
);
[COLOR=Black]
Run this query in phpMyAdmin. That’s your database,
you know need to create two text boxes, “user"
and “password”. Next you need to put this on your
"Login” button.
loadVariablesNum("login.php", 0, "POST");
}
}
This will send your variables, “user” & “password” through
to your login.php, which will be the actual workings of
this operation.
[/COLOR]