Hi,
do af rom to submit the csv file.
Then load the file into a var and process it with explode():
$sep=";";
$data = file($filename);
$lun=count($data);
for($i=1; $i<($lun+1); $i++)
{
$row=explode($sep,$data[$i]);
// now with SQL:
// insert into table '$row[0]','$row[1]','$row[2]','$row[3]'...
}