📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
reelsolusturmascripti.demodesign.com.tr
/
adminpnl
📝
abone.php
← Geri Dön
<?php include ('config.php'); include ('inc/sitedata.php'); if (!isset($_SESSION['login'])){ echo " <meta http-equiv='refresh' content='1;URL=index.php'> "; exit(); } if($uuid != 1){ echo "<script>location='../index.php'; </script>"; die; } ?> <html lang="en"> <?php include ('inc/header.php'); ?> <div class="page-content"> <div class="d-flex justify-content-between align-items-center flex-wrap grid-margin"> <div> <h4 class="mb-3 mb-md-0 text-primary"><?=$site_name;?> - <?=$site_aciklama;?></h4> </div> </div> <div class="row"> <div class="col-lg-12 col-xl-12 grid-margin stretch-card"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-baseline mb-2"> <h6 class="card-title mb-0">Tüm Abonelikler <a href="abone-excel.php" target="_blank" class="badge badge-success">Excel İndir</a></h6> </div> <div class="table-responsive mt-1"> <table id="myTable" class="table table-hover-animation mb-0"> <thead> <tr> <th>Email</th> </tr> </thead> <tbody> <?php $query_r = mysqli_query($connect, "SELECT * FROM abonelik ORDER BY id DESC"); if (mysqli_affected_rows($connect)){ $i = 1; while ($fetch_r = mysqli_fetch_array($query_r)){ ?> <tr class="active"> <td><?php echo $fetch_r['email']; ?> </td> </tr> <?php $i++;} }else{ ?> <tr class="active"> <th scope="row">0</th> <td>Kayıt</td> <td>Yok</td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> <!-- row --> </div> <?php include ('inc/footer.php'); ?> </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