I've done this a zillion times, but not recently... so I'm probably just missing something stupid. I get a syntax error with the following code:
create table registrations (
regID int(9) not null auto_increment,
Title varchar(255),
primary key (regID)
);