PHP ha una funzione per questo:fgetcsv()
. Dovrai comunque scrivere il ciclo e il codice che inserisce le righe nel database.
$in = fopen('filename.csv', 'r');
while (($row = fgetcsv($in, 10000, ',')) !== false) {
mysql_query("INSERT INTO ....");
}
fclose($in);