Papers
by using the SQL commands:
CREATE TABLE Papers ( paperID INT NOT NULL AUTO_INCREMENT, title VARCHAR(32) NOT NULL, PRIMARY KEY( paperID ) ); INSERT INTO Papers( title ) VALUES( '$title' ); SELECT * FROM Papers; |
AUTO_INCREMENT
setting.
AUTO_INCREMENT
automatically increases the value of the field by 1 each time a new record is added.
If a woman tells you she’s twenty and looks sixteen, she’s twelve. If she tells you she’s twenty-six and looks twenty-six, she’s damn near forty. — Chris Rock |