📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
qrmenuv2.demodesign.com.tr
/
admin
/
view
📝
urun-galerisi.php
← Geri Dön
<?php require_once 'include/header.php'; ?> <div class="content-wrapper"> <section class="content"> <div class="pad"></div> <div class="row"> <div class="col-lg-12"> <div class="box"> <div class="box-body table-responsive"> <table id="example" class="table table-bordered"> <thead> <tr> <th width="25%">Ürün</th> <th width="25%">Galeri</th> <th width="5%">Adet</th> <th width="5%">İşlemler</th> </tr> </thead> <tbody> <?php while($rowproduct=$queryproduct->fetch(PDO::FETCH_ASSOC)) { $querygallery=$db->prepare("SELECT * FROM gallery where id=:id and type=:type"); $querygallery->execute(array('id' => $rowproduct['id'],'type' => "product")); $rowgallery=$querygallery->rowCount(); ?> <tr> <td><?= $rowproduct['product'] ?></td> <td><?php if ($rowgallery>0) {echo "Mevcut";} else {echo "Bekliyor";} ?></td> <td><?= $rowgallery; ?></td> <td align="center"><a href="galeri?id=<?= $rowproduct['id'] ?>" class="btn btn-primary btn-sm">Düzenle</a></td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </section> </div> <?php require_once 'include/footer.php'; ?>
💾 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