📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
temasatisscripti.demodesign.com.tr
/
admin
📝
odemeler.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 odemeler where id='$idd'")->fetch(PDO::FETCH_ASSOC); unlink('../resimler/'.$resim_sorgu['resim']); $simdi=$db->query("delete from odemeler 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>Ödemeler<?=$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">Ödemeler </h5> <table class="table invoice-table"> <thead> <tr> <th scope="col">Ad Soyad</th> <th scope="col">Email</th> <th scope="col">Gönderilen Ücret</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 odemeler order by id desc",PDO::FETCH_ASSOC); if($urunlistele->rowCount()){foreach($urunlistele as $urungoster){ ?> <tr> <td><?=$urungoster['adsoyad']?> </td> <td><?=$urungoster['email']?></td> <td><?=$urungoster['ucret']?>TL</td> <td><?=$urungoster['banka']?></td> <td><span class="badge bg-primary"><?=$urungoster['tarih']?></span></td> <td> <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