Arkadaşlar yaptıgım bi siparis verme sitesinde ajax ile ürünleri sepete eklettırıyorum fakat eklettıgım ürünler ayrı ayrı eklenmıyor her zaman en baştakı urun eklenıyor.



include 'header.php';
include 'sepetheader.php';

$menusor=$db->prepare("SELECT * FROM menu WHERE menu_url=:url");
$menusor->execute(array(

'url'=>$_GET['sef']


));
$menucek=$menusor->fetch(PDO::FETCH_ASSOC);





?>









<script>


document.addEventListener('DOMContentLoaded', function(){


setTimeout(function(){
$('#btn_0').click();
},500);

$(document).on('change', '#languages', function() {

var a = $('#languages option:selected').val();

$('#btn_'+a).click();



});



}, false);

</script>

<script></script>





















$kategorisor=$db->prepare("SELECT * FROM kategori order by kategori_sira ASC");
$kategorisor->execute();
while ($kategoricek=$kategorisor->fetch(PDO::FETCH_ASSOC)) {?>
 




















$urunsor=$db->prepare("SELECT * FROM urun where urun_durum=:urun_durum and urun_stok=:urun_stok and menu_id=:menu_id");
$urunsor->execute(array(
'urun_durum' => 1,
'urun_stok' =>1,
'menu_id' =>$menucek['menu_id']


));
while ($uruncek=$urunsor->fetch(PDO::FETCH_ASSOC)) {?>



$urun_id=$uruncek['urun_id'];
$urunfotosor=$db->prepare("SELECT * FROM urunfoto where urun_id=:urun_id order by urunfoto_id ASC limit 1 ");
$urunfotosor->execute(array(
'urun_id' => $urun_id
));

$urunfotocek=$urunfotosor->fetch(PDO::FETCH_ASSOC);


?>

















$kullanicisor=$db->prepare("SELECT * FROM kullanici where kullanici_mail=:kullanici_mail ");
$kullanicisor->execute(array(
'kullanici_mail' => $_SESSION['kullanici_mail']
));

$say=$kullanicisor->rowCount();

$kullanicicek=$kullanicisor->fetch(PDO::FETCH_ASSOC);

if ($say==0) { ?>