Hi...
I'm not sure, but I think it's the number(3) thing that messes things up for you... I created that table and narrowed it down to that part... if you try to create a table with create table x (ID number(3)); it won't work...
I think it's MySql can't handle everything in sql. number might be one of them...
I'd use (ID int primary key not null auto_increment, User....
that way you don't have to enter the id. it does that by itself..
but I'm no expert...

