I can't seem to make this INSERT statement work. I've tried doing it using PHP and through phpMyAdmin, but I still get an error.
Here's the SQL statement (as echoed to the brower)
INSERT INTO rpg_characters VALUES (1,,'Renard',0,0,'',1,0,'a:3:{i:0;i:17;i:1;i:8;i:2;i:8;}')
And here's the table's structure
rpg_uid int(11)
rpg_chuid smallint(5) unsigned auto-increment (key)
rpg_chname varchar(25)
rpg_chrace tinyint(3) unsigned
rpg_chgender tinyint(3) unsigned
rpg_chmotto varchar(50)
rpg_chlevel tinyint(3) unsigned
rpg_chxp mediumint(8) unsigned
rpg_chabilities varchar(60)
the last field is a serialize() string of a numeric array.
Any help?
Jesse.