Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
proc
/
self
/
root
/
home
/
zeplinbanyo
/
public_html
/
panel
/
sayfalar
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//proc/self/root/home/zeplinbanyo/public_html/panel/sayfalar/ebulten.php
<?php echo !defined("GUVENLIK") ? die("Erisim Engellendi!.") : null;?> <?php if(g('islem')=="sil") { $id = g('id'); $kategori_sil_sorgu = Sorgu("DELETE FROM ebulten WHERE id='$id'"); $bilgi = ' <div class="alert alert-success"> Başarı ile Silinmiştir ! </div>' ; } ?> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> <small><i class="fa fa-tasks"></i> E-Bülten Listesi</small> </h1> <ol class="breadcrumb"> <li><a href="#"><i class="fa fa-home"></i> Anasayfa</a></li> <li class="active">E-Bülten Listesi</li> </ol> </section> <!-- Main content --> <section class="content"> <div class="row"> <div class="col-xs-12"> <div class="box"> <div class="box-header" style="padding:0;"> </div><!-- /.box-header --> <div class="box-body"> <table id="example1" class="table table-bordered table-hover"> <thead> <tr> <th>Sıra</th> <th>E-Mail</th> <th style="width:50px;">İşlem</th> </tr> </thead> <tbody> <?php $EbultenSorgu = Sorgu("SELECT * FROM ebulten ORDER BY id DESC"); while($EbultenSonuc = Sonuc($EbultenSorgu)){?> <tr> <td><?php echo $EbultenSonuc->id; ?></td> <td><?php echo $EbultenSonuc->email; ?></td> <td> <a href="?islem=sil&id=<?php echo $EbultenSonuc->id;?>" title="Sil" class="btn btn-danger btn-xs" onclick="return confirm('Silmek istediğinize emin misiniz ?')" id="remove-all"> Sil </a> </td> </tr> <?php } ?> </tbody> </table> </div><!-- /.box-body --> </div><!-- /.box --> </div><!-- /.col --> </div><!-- /.row --> </section><!-- /.content --> </div> <!-- jQuery 2.1.3 --> <script src="plugins/jQuery/jQuery-2.1.3.min.js"></script> <!-- Bootstrap 3.3.2 JS --> <script src="bootstrap/js/bootstrap.min.js" type="text/javascript"></script> <!-- DATA TABES SCRIPT --> <script src="plugins/datatables/jquery.dataTables.js" type="text/javascript"></script> <script src="plugins/datatables/dataTables.bootstrap.js" type="text/javascript"></script> <!-- SlimScroll --> <script src="plugins/slimScroll/jquery.slimscroll.min.js" type="text/javascript"></script> <!-- FastClick --> <script src='plugins/fastclick/fastclick.min.js'></script> <!-- AdminLTE App --> <script src="dist/js/app.min.js" type="text/javascript"></script> <!-- AdminLTE for demo purposes --> <script src="dist/js/demo.js" type="text/javascript"></script> <!-- page script --> <script type="text/javascript"> $(function () { $("#example1").dataTable(); $('#example2').dataTable({ "bPaginate": true, "bLengthChange": false, "bFilter": false, "bSort": true, "bInfo": true, "bAutoWidth": false }); }); </script>