Hello, I'll say it right now, I really know nothing about MySQL.
Anyways, This is how I'm creating a mysql table, using a install script. (I think) I want to create a mysql database that the ID does not change, I think it has to do with this part, "unsigned NOT NULL auto_increment"
So, what I'm thinking is, anything I want to put into mysql database, I need to create each entry using this
email varchar(50) NOT NULL default '', and then
nextitem varchar(50) NOT NULL default '',
Also, whats, PRIMARY KEY (ID), I'm confused to what that is, and TYPE=MyISAM
Thanks for helping
Keith