HOME SHELL

NULLCOMMUNITY
 LiteSpeed
 Linux server2.poyrazhosting.com 3.10.0-962.3.2.lve1.5.77.el7.x86_64 #1 SMP Mon Dec 12 07:06:14 EST 2022 x86_64
 safemode : OFF
 MySQL: OFF | Perl: OFF | cURL: ON | WGet: OFF
  >  / home / cuneytsener53 / sigorta1.snrsoft.com.tr / trex /

Server Ip : 172.67.216.244




Filename/home/cuneytsener53/sigorta1.snrsoft.com.tr/trex/blog-kategoriler.php
Size2.23 kb
Permissionrw-r--r--
Owner
Create time02-Mar-2025 05:46
Last modified02-Jun-2019 13:06
Last accessed05-Apr-2025 09:50
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php
include 'header.php';
include 'topbar.php';
include 'sidebar.php';
$kategorisor=$db->prepare("SELECT * from kategorilerb");
$kategorisor->execute(array(0));
?>
<!-- ============================================================== -->
<!-- Content Start -->
<!-- ============================================================== -->
<section class="main-content container">
<div class="page-header">
<h2>Kategori İşlemleri</h2>
</div>


<div class="row">
<!-- İLETİŞİM MESAJLARI -->
<div class="col-md-12">
<div class="card">
<div class="card-heading card-default">
<div class="pull-right mt-10">
<a href="blog-kategori-ekle.php" class="btn btn-primary btn-icon"><i class="fa fa-plus"></i> Kategori Ekle</a>
</div>
<div class="pull-right mt-10" style="margin-right: 10px;">
<a href="blog.php" class="btn btn-warning btn-icon"><i class="fa fa-reply"></i>Geri Dön</a>
</div>
Kategoriler
</div>

<div class="card-block">
<table id="datatable1" class="table table-striped dt-responsive nowrap table-hover">
<thead>
<tr>
<th style="width: 10%;" class="text-center">
<strong>Kategori Sira</strong>
</th>
<th class="text-left">
<strong>Kategori Adı</strong>
</th>
<th class="text-center">
<strong>İşlemler</strong>
</th>
</tr>
</thead>
<tbody>
<?php
while ($kategoricek=$kategorisor->fetch(PDO::FETCH_ASSOC)) {
?>
<tr>
<td class="text-center"><?php echo $kategoricek['kategori_sira']; ?></i></td>
<td><?php echo $kategoricek['kategori_ad']; ?></i></td>
<td class="text-center">
<a href="blog-kategori-duzenle.php?kategori_id=<?php echo $kategoricek['kategori_id']; ?>" title="Düzenle" class="btn btn-sm btn-success"><i class="fa fa-edit"></i></a>
<a href="controller/function.php?blogkategorisil=ok&kategori_id=<?php echo $kategoricek['kategori_id']; ?>" title="Sil" class="btn btn-sm btn-danger"><i class="fa fa-trash"></i></a>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
<!-- İLETİŞİM MESAJLARI -->
</div>

<?php include 'footer.php'; ?>