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(
$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
));