📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
temasatisscripti.demodesign.com.tr
/
admin
📝
index.php
← Geri Dön
<?php include("include/baglan.php"); include("include/fonksiyonlar.php"); ob_start(); session_start(); oturumkontrolana(); if($_GET['sil']){ $idd=$_GET['sil']; $resim_sorgu=$db->query("select * from siparisler where id='$idd'")->fetch(PDO::FETCH_ASSOC); unlink('../resimler/'.$resim_sorgu['resim']); $simdi=$db->query("delete from siparisler where id='$idd'")->fetch(PDO::FETCH_ASSOC); } ?> <!DOCTYPE html> <html lang="tr"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="<?=$ayar['site_description']?>"> <meta name="keywords" content="<?=$ayar['site_keyword']?>"> <meta name="author" content="<?=$ayar['site_author']?>"> <link rel="icon" type="image/png" href="../resimler/<?=$ayar['favicon']?>"> <title><?=$ayar['site_title']?></title> <link href="https://fonts.googleapis.com/css?family=Poppins:400,500,700,800&display=swap" rel="stylesheet"> <link href="assets/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <link href="assets/plugins/font-awesome/css/all.min.css" rel="stylesheet"> <link href="assets/plugins/perfectscroll/perfect-scrollbar.css" rel="stylesheet"> <link href="assets/plugins/DataTables/datatables.min.css" rel="stylesheet"> <link href="assets/css/main.min.css" rel="stylesheet"> <link href="assets/css/custom.css" rel="stylesheet"> </head> <body> <div class="page-container"> <div class="page-header"> <?php include("include/header.php");?> </div> <?php include("include/menu.php");?> <div class="page-content"> <div class="main-wrapper"> <div class="row"> <div class="col"> <div class="card"> <div class="card-body"> <h5 class="card-title">Gelen Siparişler </h5> <table class="table invoice-table"> <thead> <tr> <th scope="col">Sipariş Id</th> <th scope="col">Ad Soyad</th> <th scope="col">Email</th> <th scope="col">Tema Kodu</th> <th scope="col">Havale Banka </th> <th scope="col">Eklenme Tarihi</th> <th scope="col">İşlem</th> </tr> </thead> <tbody> <?php $urunlistele = $db->query("select * from siparisler order by id desc",PDO::FETCH_ASSOC); if($urunlistele->rowCount()){foreach($urunlistele as $urungoster){ ?> <tr> <th scope="row"><?=$urungoster['id']?></th> <td><?=$urungoster['adsoyad']?> </td> <td><?=$urungoster['email']?></td> <td><?=$urungoster['temakodu']?></td> <td><?=$urungoster['banka']?></td> <td><span class="badge bg-primary"><?=$urungoster['tarih']?></span></td> <td> <a href="siparis-ekle.php?islem=duzenle&id=<?=$urungoster['id']?>"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-edit"><path d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"></path><path d="M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"></path></svg></a> <a href="?sil=<?=$urungoster['id']?>"><i class="fa fa-trash-o"></i></a> </td> </tr> <?php } }?> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> <script src="assets/plugins/jquery/jquery-3.4.1.min.js"></script> <script src="https://unpkg.com/@popperjs/core@2"></script> <script src="assets/plugins/bootstrap/js/bootstrap.min.js"></script> <script src="https://unpkg.com/feather-icons"></script> <script src="assets/plugins/perfectscroll/perfect-scrollbar.min.js"></script> <script src="assets/plugins/DataTables/datatables.min.js"></script> <script src="assets/js/main.min.js"></script> <script src="assets/js/pages/datatables.js"></script> <script src="https://use.fontawesome.com/ca9a29c061.js"></script> </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