When i try to import a CSV file into my mysql database I get this error "Invalid field count in CSV input on line 1". But i am sure that my csv file is fine. Below is the first line of the csv file and the structure of the databse:
"","[email protected]","Licia Dallolio","390","37","","",
CREATE TABLE `other_table` (
`id` int(11) NOT NULL auto_increment,
`email` varchar(256) default NULL,
`name` varchar(256) default NULL,
`opened` int(11) default NULL,
`checked` int(11) default NULL,
`category` varchar(256) default NULL,
`company` varchar(256) default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
If anyone can help me out with this I would be very grateful. Thanks