Either with SQL or PHP how can I make a field autonumber?
When you make your table....do this..
CREATE TABLE tablename ( id int(4) not null auto_increment PRIMARY KEY, field_two longtext );
it's the auto_increment field that does it.
tha_mink