<?php
/*
NmnNewsletter is a library that provides newsletter service
management for websites running php and mysql.
Copyright (C) 2006 Ivan Preziosi from netmeans.net - Rome.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
For more informations or to join the development of the library contact
the author at: hide@address.com
*/
require_once("includes/config.php");
sessCtrl();
$subscribers = NewsletterUsers::getSearchArray($_GET["search"],$_GET["alsoDel"],$_GET["alsoUnconfirmed"],$_GET["alsoSubscribed"],false);
$html = "";
$html .= "<table border=\"1\">";
$html .= "<tr>";
$html .= " <td colspan=\"2\" align=\"center\"><strong>NmnNewsletter Suscribers export</strong></td>";
$html .= "</tr>";
$html .= "<tr>";
$html .= " <td align=\"center\"><strong>EMAIL</strong></td>";
$html .= " <td align=\"center\"><strong>STATUS</strong></td>";
$html .= "</tr>";
foreach ($subscribers as $subscriber){
$html .= "<tr>";
$html .= " <td align=\"center\">".$subscriber[0]."</td>";
$html .= " <td align=\"center\">".$subscriber[1]."</td>";
$html .= "</tr>";
}
$html .= "</table>";
header('Content-type: application/vnd.ms-excel');
header( "Content-disposition: inline; filename=nmnNewsletter_subscribers_".date("d-m-Y").".xls" );
echo $html;
?>