📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
rentacarv1.demodesign.com.tr
/
trex
📝
sss.php
← Geri Dön
<?php include 'header.php'; include 'topbar.php'; include 'sidebar.php'; $ssssor=$db->prepare("SELECT * from sss order by sss_sira ASC"); $ssssor->execute(array(0)); ?> <!-- ============================================================== --> <!-- Content Start --> <!-- ============================================================== --> <section class="main-content container"> <div class="page-header"> <h2>Sık Sorulan Sorular</h2> </div> <div class="row"> <!-- İLETİŞİM MESAJLARI --> <div class="col-md-12"> <div class="card"> <div class="card-heading card-default"> <div class="pull-right mt-10"> <a href="sss-ekle.php" class="btn btn-primary btn-icon"><i class="fa fa-plus"></i> SSS Ekle</a> </div> Sık Sorulan Sorular </div> <div class="card-block"> <table id="datatable1" class="table table-striped dt-responsive nowrap table-hover"> <thead> <tr> <th class="text-center"> <strong>SSS id</strong> </th> <th class="text-left"> <strong>Soru</strong> </th> <th class="text-left"> <strong>Cevap</strong> </th> <th class="text-center"> <strong>İşlemler</strong> </th> </tr> </thead> <tbody> <?php while ($ssscek=$ssssor->fetch(PDO::FETCH_ASSOC)) { $ssscevap=mb_substr(strip_tags($ssscek['sss_cevap']), 0, 80, 'UTF-8')."..."; ?> <tr> <td><?php echo $ssscek['sss_sira']; ?></i></td> <td><?php echo $ssscek['sss_soru']; ?></td> <td><?php echo $ssscevap; ?></td> <td class="text-center"> <a href="sss-duzenle.php?sss_id=<?php echo $ssscek['sss_id']; ?>" title="Düzenle" class="btn btn-sm btn-success"><i class="fa fa-edit"></i></a> <a href="controller/function.php?ssssil=ok&sss_id=<?php echo $ssscek['sss_id']; ?>" title="Sil" class="btn btn-sm btn-danger"><i class="fa fa-trash"></i></a> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> <!-- İLETİŞİM MESAJLARI --> </div> <?php 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