Here is the error my code generated:
1064: You have an error in your SQL syntax near 'id #2' at line 1 in
INSERT INTO blogger_categories SET blogc_pid = '0', blogc_name = 'sdfsafd', blogc_desc = ''
Here is the table structure:
#
# Table structure for table `blogger_categories`
#
CREATE TABLE blogger_categories (
blogc_id int(11) NOT NULL auto_increment,
blogc_name varchar(255) NOT NULL default '',
blogc_desc tinytext NOT NULL,
blogc_pid int(11) NOT NULL default '0',
PRIMARY KEY (blogc_id)
) TYPE=MyISAM;
Im kinda confused about it