📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
makalesatisscripti.demodesign.com.tr
📝
duyurular.php
← Geri Dön
<?php include ('config.php'); include ('system/inc/sitedata.php'); if (!isset($_SESSION['login'])){ echo " <meta http-equiv='refresh' content='1;URL=index.php'> "; exit(); } ?> <!DOCTYPE html> <html lang="en"> <?php include ('system/inc/header.php'); ?> <div class="main-panel"> <div class="content-wrapper"> <div class="row"> <div class="col-md-12 grid-margin"> <div class="row"> <div class="col-12 col-xl-8 mb-4 mb-xl-0"> <h3 class="font-weight-bold text-primary">Sayın <?=$adsoyad;?></h3> <h6 class="font-weight-normal mb-0">Yeniden seni görmek ne kadar güzel! <span class="text-primary"><?=$site_name;?></span></h6> </div> </div> </div> </div> <div class="row"> <div class="col-md-12 grid-margin stretch-card"> <div class="card"> <div class="card-body"> <p class="card-title mb-0">Son Duyurular</p> <div class="table-responsive"> <table class="table table-striped table-borderless"> <thead> <tr> <th>#</th> <th>Duyuru</th> </tr> </thead> <tbody> <?php $query_r = mysqli_query($connect, "SELECT * FROM duyurular"); if (mysqli_affected_rows($connect)){ $i = 1; while ($fetch_r = mysqli_fetch_array($query_r)){ ?> <tr class="active"> <td><?php echo $fetch_r['id']; ?></td> <td ><span class="badge badge-primary"><?php echo $fetch_r['duyuru']; ?></span></td> </tr> <?php $i++;} }else{ ?> <tr class="active"> <th scope="row">0</th> <td>Duyuru</td> <td>Henüz</td> <td>Yok</td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> </div> <?php include ('system/inc/footer.php'); ?> </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