I have to insert many data from excel to a table (about 4000 rows ) throught Ajax inside a loop i use :
$query = "INSERT IGNORE INTO ".$params["table"]." (".$colonnes_string.") VALUES (".$row.")";
This query works fine but it insert only 1000 rows of 4000, may be some insert have error why i set IGNORE statement, but it still not insert above 1000 rows.
How can i skip insert error and continue the query ?
Thank you.