Por que no mejor con un foreach y una function que chequee si existe el email ?
Algo asi:
Código PHP:
Ver original<?php
include("config.php");
$file = $_FILES['csv']['tmp_name'];
$handle = fopen($file,"r"); $data = fgetcsv($handle,1000,",","'");
foreach($data as $k => $v){
if(!check_email($v[1])){
mysql_query("INSERT INTO afiliados (nombre, mail) VALUES (
'".$v[0]."',
'".$v[1]."'
)
");
}
}
function check_email($email){
//si existe el email en la db
//return true;
//si no existe
//return false
}