http://www.phpbuilder.com/snippet/browse.php?by=cat&cat=16
user: tawsan
How would I go about adding users to this code?
Here is the MySQL code:
CREATE TABLE user (
userid int(11) NOT NULL auto_increment,
username varchar(12) NOT NULL DEFAULT '' ,
userpass varchar(32) NOT NULL DEFAULT '' ,
sesid varchar(32) NOT NULL DEFAULT '' ,
time int(14) NOT NULL DEFAULT '0' ,
PRIMARY KEY (userid),
INDEX userid (userid)
);
Thanks,
John Paul