📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
reklamtabelascripti.demodesign.com.tr
/
panel
/
sayfalar
📝
ebulten.php
← Geri Dön
<?php echo !defined("GUVENLIK") ? die("Erisim Engellendi!.") : null;?> <?php if(g('islem')=="sil") { $id = g('id'); $sayfa_sil_sorgu = Sorgu("DELETE FROM ebulten WHERE id='$id'"); $bilgis = ' <div class="alert alert-success"> S.S.S Başarı ile Silinmiştir ! </div>' ; } ?> <!-- Start content --> <div class="content"> <div class="container"> <!-- Page-Title --> <div class="row"> <div class="col-sm-12"> <?php echo $bilgis;?> <h4 class="page-title">E-Bülten</h4> <ol class="breadcrumb"> <li> <a href="index.html">Anasayfa</a> </li> <li> <a href="#">E-Bülten Yönetimi</a> </li> <li class="active"> E-Bülten </li> </ol> </div> </div> <div class="row"> <div class="col-sm-12"> <div class="card-box"> <table id="demo-foo-filtering" class="table table-striped toggle-circle m-b-0" data-page-size="10"> <thead> <tr> <th data-toggle="true">Sıra</th> <th>Adı, Soyadı</th> <th>E-Posta Adresi</th> <th>İşlem</th> </tr> </thead> <div class="form-inline m-b-20"> <div class="row"> <div class="col-sm-6 text-xs-center"> <div class="form-group"> <label class="control-label m-r-5">Durum</label> <select id="demo-foo-filter-status" class="form-control input-sm"> <option value="">Tümünü Göster</option> <option value="aktif">Aktif</option> <option value="pasif">Pasif</option> </select> </div> </div> <div class="col-sm-6 text-xs-center text-right"> <div class="form-group"> <input id="demo-foo-search" type="text" placeholder="Arama" class="form-control input-sm" autocomplete="on"> </div> </div> </div> </div> <tbody> <?php $SayfaSorgu = Sorgu("SELECT * FROM ebulten ORDER BY id DESC"); $say = 1; while($SayfaSonuc = Sonuc($SayfaSorgu)){?> <tr> <td><?php echo $say++ ?></td> <td><?php echo $SayfaSonuc->adi; ?></td> <td><?php echo $SayfaSonuc->email; ?></td> <td> <a class="btn btn-danger btn-custom btn-xs waves-effect waves-light" href="?islem=sil&id=<?php echo $SayfaSonuc->id;?>" onclick="return confirm('Silmek istediğinize emin misiniz ?')" id="remove-all"><i class="fa fa-trash"></i> Sil</a> </td> </tr> <?php } ?> </tbody> <tfoot> <tr> <td colspan="5"> <div class="text-right"> <ul class="pagination pagination-split m-t-30 m-b-0"></ul> </div> </td> </tr> </tfoot> </table> </div> </div> </div> </div> </div> <!-- ============================================================== --> <!-- End Right content here --> <!-- ============================================================== --> <!-- Right Sidebar --> <!-- /Right-bar --> <!-- END wrapper --> </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