This doesn't really have anything to do with Php but I'm following a php tutorial so...I've NEVER used any database system before...
Anyway,
I'm following this tutorial,
http://buildingbrowsergames.com/2008/04/15/designing-your-database/
I'm up to the part where your making the user sql table in the tutorial. I have no idea where to input that code..
Where do you put the code?
CREATE TABLE users (
id int NOT NULL AUTO_INCREMENT,
username varchar(250),
password varchar(50),
PRIMARY KEY(id)
);