📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
arackiralama.demodesign.com.tr
/
admin
/
pages
📝
listpage.php
← Geri Dön
<!-- Content Body Start --> <div class="content-body"> <!-- Page Headings Start --> <div class="row justify-content-between align-items-center mb-10"> <!-- Page Heading Start --> <div class="col-12 col-lg-auto mb-20"> <div class="page-heading"> <h3 class="title">Yeni sayfa <span>/ Sayfa listele</span></h3> </div> </div><!-- Page Heading End --> </div><!-- Page Headings End --> <div class="row"> <!--Default Data Table Start--> <div class="col-12 mb-30"> <div class="box"> <div class="box-head"> <h3 class="title">Sayfalar</h3> </div> <div class="box-body"> <table class="table table-bordered data-table data-table-default"> <thead> <tr> <th>Sayfa ismi</th> <th>Eklenme tarihi</th> <th>İşlem</th> </tr> </thead> <tbody> <?php $sorgula = $db->prepare("SELECT * FROM page"); $sorgula->execute(); while ($veri = $sorgula->fetch(PDO::FETCH_ASSOC)) { ?> <tr> <td><?php echo $veri["name"] ?></td> <td><?php echo $veri["date"] ?></td> <td><a href="?s=editpage&id=<?php echo $veri["id"] ?>" class="button button-outline button-primary">Düzenle</a></td> </tr> <?php } ?> </tbody> <!-- <tfoot> <tr> <th>Ürün ismi</th> <th>Ürün fiyatı</th> <th>Eklenme tarihi</th> <th>İşlem</th> </tr> </tfoot> --> </table> </div> </div> </div> <!--Default Data Table End--> </div> </div><!-- Content Body End --> <?php include("pages/inc/footer.php"); ?> </div> <!-- Plugins & Activation JS For Only This Page --> <script src="assets/js/plugins/datatables/datatables.min.js"></script> <script src="assets/js/plugins/datatables/datatables.active.js"></script> </body> </html>
💾 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