I've tried creating a new table in my MYSQL databse and this is the code outputted:
CREATE TABLE `phpbb_ecards_details` (
`id` TINYINT NOT NULL ,
`submitter` VARCHAR NOT NULL ,
`name` TINYTEXT NOT NULL ,
`date` VARCHAR NOT NULL ,
`website` VARCHAR NOT NULL
)
and I get this error
MySQL said:
You have an error in your SQL syntax near 'NOT NULL, name TINYTEXT NOT NULL, date VARCHAR NOT NULL, website VARCHAR N' at line 1
I've tried different setting for things and null and not null, but it doesn't seem to work. I've read the documentation and still don't get it. Can anyone offer any help?