📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
b2be-ticaretscripti.demodesign.com.tr
/
b2b
📝
favorilerim.php
← Geri Dön
<title>Favori Ürünlerim</title> <meta name="keywords" content="<?php echo $ayar['sitekey']; ?>"> <meta name="description" content="<?php echo $ayar['sitedesc']; ?>"> <meta property="og:url" content="<?php echo $url; ?>"/> <meta property="og:title" content="Üyelik Sözleşmesi ve Rıza Metni"/> <meta property="og:description" content="<?php echo $ayar['sitedesc']; ?>"/> <div class="breadcrumb-area"> <div class="container"> <div class="breadcrumb-content"> <ul> <li><a href="<?php echo $url;?>">Anasayfa</a></li> <li class="active">Favorilerim</li> </ul> </div> </div> </div> <div class="wishlist-area pt-60 pb-60"> <div class="container"> <div class="row"> <div class="col-12"> <form action="#"> <div class="table-content table-responsive"> <table class="table"> <thead> <tr> <th class="li-product-remove">sil</th> <th class="li-product-thumbnail">Resim</th> <th class="cart-product-name">Ürün</th> <th class="li-product-stock-status">Ürün Kodu</th> <th class="li-product-price">Fiyatı</th> <th class="li-product-add-cart">Sepete Ekle</th> </tr> </thead> <tbody> <?php $uyesepeti11 = $ozy->prepare("SELECT * FROM urunler INNER JOIN favoriler ON urunler.id = favoriler.urunid WHERE favoriler.gelenkim=? ORDER BY favoriler.id DESC"); $uyesepeti11->execute(array($sepetimdekikim)); $__URUN__ = false; foreach ($uyesepeti11 as $katurunler) { $__URUN__ = true; ?> <tr> <td class="li-product-remove"><a href="?favorisil=<?php echo $katurunler['id']; ?>"><i class="fa fa-times"></i></a></td> <td class="li-product-thumbnail"><a href="urun/<?php echo $katurunler['seo']; ?>"><img style="width: 90px; height: 90px;" src="resimler/urunler/<?php echo $katurunler['resim']; ?>" alt=""></a></td> <td class="li-product-name"><a href="urun/<?php echo $katurunler['seo']; ?>"><?php echo $katurunler['adi']; ?></a></td> <td class="li-product-stock-status"><span class="in-stock"><?php echo $katurunler['urunkodu']; ?></span></td> <td class="li-product-price"> <?php echo urunfiyatbelirle($katurunler['kdv'],$katurunler['idurum'],$katurunler['fiyat'],$katurunler['ifiyat']);?> </td> <td class="li-product-add-cart"> <form method="POST" action=""> <input type="hidden" name="urunid" value="<?php echo $katurunler['id']; ?>"> <input type="hidden" name="adet" value="1"> <button class="butonok btn-cart" type="submit" style="width: 100%;" name="sepetekle" data-loading-text="<span class='btn-text'>Sepete Ekle</span>"><span class="btn-text">Sepete Ekle</span></button> </form> </td> </tr> <?php } if (!$__URUN__){ echo "<b style='font-weight: 500;padding: 10px;width: 100%;text-align: center;border: 1px solid #ededed;'>Malesef favorilerinizde ürün bulunamadı</b>"; } ?> </tbody> </table> </div> </form> </div> </div> </div> </div>
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula