📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
blog.demodesign.com.tr
/
admin
📝
aboneol.php
← Geri Dön
<?php include("include/baglan.php"); include("include/fonksiyonlar.php"); ?> <!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>Abone Ol Listele <?=$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">Abone Ol Listele</h5> <table class="table invoice-table"> <thead> <tr> <th scope="col">Yorum Id</th> <th scope="col">Yorum Email</th> </tr> </thead> <tbody> <?php $urunlistele = $db->query("select * from aboneol order by id desc",PDO::FETCH_ASSOC); if($urunlistele->rowCount()){foreach($urunlistele as $urungoster){ ?> <tr> <th scope="row"><?=$urungoster['id']?></th> <td><?=$urungoster['email']?> </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