📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
reelsolusturmascripti.demodesign.com.tr
/
adminpnl
📝
abone-excel.php
← Geri Dön
<?php include ('config.php'); include ('inc/sitedata.php'); if (!isset($_SESSION['login'])){ echo " <meta http-equiv='refresh' content='1;URL=index.php'> "; exit(); } ?> <html> <head> <meta charset="UTF-8"> </head> <?php if($uuid != 1){ echo "<script>location='index.php'; </script>"; die; } error_reporting(0); $query = "SELECT * FROM abonelik"; $res = mysqli_query($connect, $query); if(mysqli_num_rows($res) > 0) { $export .= ' <table> <tr> <th style="color:red"> EMAİL </th> </tr> '; while($row = mysqli_fetch_array($res)) { $export .= ' <tr> <td>'.$row["email"].'</td> </tr> '; } $export .= '</table>'; $dateee = date("d.m.Y"); header('Content-Type: application/xls; charset=utf-8'); header('Content-Disposition: attachment; filename=abonelik-'.$dateee.'.xls'); echo $export; } ?> </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