Mini Shell
<div class="page-wrapper">
<?php
if(isset($_POST['sil'])){
$sil=$_POST['toplu_sil'];
$sill = implode(",",$sil);
foreach($sil as $s){
$resim_sorgu1=$db->query("select * from urun_yorum where id='$s'")->fetch(PDO::FETCH_ASSOC);
unlink('../../resimler/'.$resim_sorgu1['resim']);
$simdii=$db->query("delete from urun_yorum where id='$s'")->fetch(PDO::FETCH_ASSOC);
}
}
?>
<form method="post">
<div class="content">
<div class="page-header">
<div class="page-title">
<h4>Ürün Yorum Listele</h4>
</div>
<div class="page-btn">
<input type="submit" name="sil" class="btn btn-added" value="Seçilenleri Sil">
</div>
</div>
<div class="card">
<div class="card-body">
<div class="table-top">
<div class="search-set">
<div class="search-input">
<a class="btn btn-searchset"><img src="assets/img/icons/search-white.svg" alt="img"></a>
</div>
</div>
<div class="wordset">
<ul>
<li>
<a data-bs-toggle="tooltip" data-bs-placement="top" title="pdf"><img src="assets/img/icons/pdf.svg" alt="img"></a>
</li>
<li>
<a data-bs-toggle="tooltip" data-bs-placement="top" title="excel"><img src="assets/img/icons/excel.svg" alt="img"></a>
</li>
<li>
<a data-bs-toggle="tooltip" data-bs-placement="top" title="print"><img src="assets/img/icons/printer.svg" alt="img"></a>
</li>
</ul>
</div>
</div>
<div class="table-responsive">
<table class="table datanew">
<thead>
<tr>
<th>
<label class="checkboxs">
<input type="checkbox" id="select-all">
<span class="checkmarks"></span>
</label>
</th>
<th>Id</th>
<th>Adı</th>
<th>Eklenme Tarihi</th>
<th>Durum</th>
<th>İşlem</th>
</tr>
</thead>
<tbody>
<?php
$cek = $db->query("select * from urun_yorum order by id desc")->fetchAll(PDO::FETCH_ASSOC);
foreach($cek as $goster){
$urun = $db->query("select * from urunler where id='{$goster["urun_id"]}'")->fetch(PDO::FETCH_ASSOC);
?>
<tr>
<td>
<label class="checkboxs">
<input type="checkbox" name="toplu_sil[]" value="<?=$goster["id"]?>">
<span class="checkmarks"></span>
</label>
</td>
<td><?=$goster["id"]?></td>
<td class="productimgname">
<a href="urun-yorum-ekle?islem=duzenle&id=<?=$goster["id"]?>" class="product-img">
<?php if($goster["resim"]!=''){?>
<img src="../../resimler/<?=$urun["resim"]?>" alt="<?=$urun["adi"]?>">
<?php } else {?>
<img src="assets/img/product/noimage.png" alt="resim yok">
<?php }?>
</a>
<a href="urun-yorum-ekle?islem=duzenle&id=<?=$goster["id"]?>"><?=$urun["adi"]?></a>
</td>
<td><?=$goster["tarih"]?></td>
<td><?php if($goster["durum"]==0){ echo "Aktif";}else {echo"Pasif";}?></td>
<td>
<a class="me-3" href="urun-yorum-ekle?islem=duzenle&id=<?=$goster["id"]?>">
<img src="assets/img/icons/edit.svg" alt="img">
</a>
</td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div></form>
</div>