You can write a simple PHP script to do it. I always like to write my own stuff !🙂
$buffer=file($yourfile);
reset($buffer);
while(list($key,$line)=each($buffer)) {
$fields=split(",",$line);
mysql_query("insert into $table values ('" . join("','",$fields) . "')");
}
I didn't check the syntax , but this is the idea.
-Paulo