����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.12.162.40 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/consulting.bofirm.com/ad4Lg8Q4min/ |
Upload File : |
<?php include 'config.php'; $now = gmdate("D, d M Y H:i:s"); header('Content-Type: text/csv; charset=utf-8'); header('Content-Disposition: attachment; filename=subscriber_list.csv'); $output = fopen("php://output", "w"); fputcsv($output, array('SL', 'Subscriber Email')); $statement = $pdo->prepare("SELECT * FROM tbl_subscriber WHERE subs_active=1"); $statement->execute(); $result = $statement->fetchAll(PDO::FETCH_ASSOC); foreach ($result as $row) { fputcsv($output, array($row['subs_id'],$row['subs_email'])); } fclose($output); ?>