I'm trying to create a script that will make a table with an id that auto increments, here's what i've got, but it seems to be broke...
I'm trying to make 'id' primary, not null, and auto_incrementing, but it won't work...any idea on how to fix this?PHP Code:$sql2 = "CREATE TABLE ns_names PRIMARY KEY(id)(
name VARCHAR (50),
email VARCHAR (50),
timestamp TIMESTAMP,
id INTEGER NOT NULL AUTO_INCREMENT
);";





Bookmarks