📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
lisans.demodesign.com.tr
📝
reports.php
← Geri Dön
<?php require "include/header.php"; if (isset($_POST['lsil'])) { $sil=$db->prepare("DELETE from ihbarlar where id=:id"); $kontrol=$sil->execute(array('id' => $_POST['iid'])); if ($kontrol) { ?> <?php echo '<meta http-equiv="refresh" content="0;URL=reports?durum=Yes">'; } else { ?> <?php echo '<meta http-equiv="refresh" content="0;URL=reports?durum=Hata">'; } } ?> <title>İhbarlar</title> <div class="main-content" bis_skin_checked="1"> <div class="page-content" bis_skin_checked="1"> <div class="container-fluid" bis_skin_checked="1"> <!-- start page title --> <!-- end page title --> <div class="row" bis_skin_checked="1"> <div class="col-lg-12" bis_skin_checked="1"> <div class="card" bis_skin_checked="1"> <div class="card-body" bis_skin_checked="1"> <h4 class="header-title">İhbarlar</h4> <p class="card-title-desc"> Tüm kayıtlı ihbarları bu bölümden görüntüleyebilirsiniz. </p> <div class="table-responsive" bis_skin_checked="1"> <table class="table mb-0"> <thead> <tr> <th>#</th> <th>Alan Adı</th> <th>İP</th> <th>Neden</th> <th>İşlem</th> </tr> </thead> <tbody> <?php $isor=$db->prepare("SELECT * FROM ihbarlar"); $isor->execute(); while($icek=$isor->fetch(PDO::FETCH_ASSOC)) { ?> <tr> <th><?php echo $icek['id']; ?></th> <th><?php echo $icek['ihbaralanadi']; ?></th> <th><?php echo $icek['ilkip']; ?></th> <th><?php echo $icek['sebep']; ?></th> <th> <form method="POST"> <input type="hidden" name="iid" value="<?php echo $icek['id']; ?>"> <button name="lsil" type="submit" title="Sil" class="btn btn-sm btn-light"><i class="fa fa-trash"></i></button> </form> </th> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> <!-- end row --> </div> <!-- container-fluid --> </div> <!-- End Page-content --> <?php require '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