I have just browsed some tutorials on how to set up php log-in systems, and it told me to create a mySQL table..
What I wonder is where to fill in this text and how to apply it to the database..
CREATE TABLE member (
id int NOT NULL auto_increment,
username varchar(20) NOT NULL default '',
password char(32) binary NOT NULL default '',
cookie char(32) binary NOT NULL default '',
session char(32) binary NOT NULL default '',
ip varchar(15) binary NOT NULL default '',
PRIMARY KEY (id),
UNIQUE KEY username (username)
);
And by the way -> Great forum!! 🙂