i Veritabanı sağa sola dizide kayıt ekleyerek işleyen bir php dosyası var.
Dizideki örneğin ben 5 ürün yok
aray an='abc','xyz','ert','wer','oiu'
i j sorgu ajax yöntemde bir php dosyası aramak istiyorum
um = an.split(',');
var counter = 0;
if(counter < uemail.length) {
$("#sending_count").html("Processing Record "+ ecounter +" of " + an.length);
var data = {uid: um[counter]
$.ajax({
type: "POST",
url: "save.php",
data: data,
success: function(html){
echo "added";
counter++;
}
what it do, it complete all the prcess but save.php is still working what i want after one process it stop untill process of save.php complete then it wait for next 10 sec and start adding of 2nd element.
Teşekkürler