📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
b2be-ticaretscripti.demodesign.com.tr
/
boss
📝
bayiler_api.php
← Geri Dön
<?php define("guvenlik",true);?> <?php require('../func/db.php'); require('../func/fonksiyon.php'); giriskontrol($ozy,1); if(!isset($_SESSION["giris"])){ header("Location:index.php"); } else { }?> <?php if (isset($_POST["arama"])) { // Ürünleri arayın $arananKelime = $_POST["arama"]; $stmt = $ozy->prepare("SELECT * FROM users WHERE onay='1' and bayi='1' and isim LIKE :arananKelime or email LIKE :arananKelime"); $stmt->bindValue(":arananKelime", '%' . $arananKelime . '%'); $stmt->execute(); $urunler = $stmt->fetchAll(PDO::FETCH_ASSOC); } else { // Tüm ürünleri seçin $stmt = $ozy->prepare("SELECT * FROM users where onay='1' and bayi='1'"); $stmt->execute(); $urunler = $stmt->fetchAll(PDO::FETCH_ASSOC); } if ($stmt->rowCount() > 0) { // Ürünleri döngüyle işleyin ve görüntüleyin foreach($urunler as $urun) { $bayiid = $urun['bayigrup']; $oranbayix = $ozy->query("select * from bayigrup where id='$bayiid'")->fetch(PDO::FETCH_ASSOC); echo ' <a href="' . $url. '/boss/hizlisiparis?bayino=' . $urun["id"] . '"> <div class="urun"> <td>' . $urun["isim"] . ' <b style="font-weight:bold;"> (%' . $oranbayix['oran'] .')</b></td>'; // Eklenen değişiklik echo '<td>Sipariş Ver</td>'; echo '</div> </a> '; } } else { echo "Ürün bulunamadı."; } ?> <style> .urun { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; padding: 10px; background: #30419b; color: white; height: 56px; border: 5px solid #fdfdfd; } .urun td { flex: 1; } .urun .adet { width: 50px; } .urun .sepete_ekle { background-color: #ff9800; color: white; border: none; padding: 4px; cursor: pointer; } .urun .sepete_ekle:hover { background-color: #ff5722; } </style>
💾 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