I need some help understanding the best way to set up my database. I am getting this strrange thing where my MySQL database tables will stop storing data when there are more than 127 rows. If I clear the talbe it works again. I am lost as to why this is happening.
Below is the SQL structure of my table:
CREATE TABLE mm241c_linkbox (
id tinyint(4) NOT NULL auto_increment,
first_name text,
date_posted text,
last_name text,
assignment_name text,
url text,
email text,
PRIMARY KEY (id)
) TYPE=MyISAM;