<?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();
$main .= "
<div class=page_heading>".EXPORT_USERS_TITLE."</div>
$msg
<table width=95%>
<tr>
<td align=right>
<span ><a href=\"subscribers.php\">".SUBSCRIBERS_SEARCH_SUBSCRIBERS_LINK."</a></span>
</td>
</tr>
<tr>
<td align=center>
<span class=error_text id=label_email></span>
</td>
</tr>
<tr>
<td align=center>
<div class=page_heading>".EXPORT_USERS_SUBTITLE."</div><br>
";
$main .= "<form method=\"post\" action=\"\"><div style='border-bottom:1px solid #DFE8FF;text-align:left;'><table width=45%><tr><td >".EXPORT_USERS_SUBSCRIBED_FORM." </td><td align='right'><input type=\"checkbox\" name=\"alsoSubscribed\" checked=\"true\" /></td></tr></table></div>";
$main .= "<form method=\"post\" action=\"\"><div style='border-bottom:1px solid #DFE8FF;text-align:left;'><table width=45%><tr><td >".EXPORT_USERS_DELETED_FORM." </td><td align='right'><input type=\"checkbox\" name=\"alsoDeleted\" /></td></tr></table></div>";
$main .= "<form method=\"post\" action=\"\"><div style='border-bottom:1px solid #DFE8FF;text-align:left;'><table width=45%><tr><td >".EXPORT_USERS_UNCONFIRMED_FORM." </td><td align='right'><input type=\"checkbox\" name=\"alsoUnconfirmed\" /></td></tr></table></div>";
$main .= "<div style='border-bottom:1px solid #DFE8FF;'><table width=95%><tr><td ></td><td align='right'>[<a href=\"javascript:startExport();\">".EXPORT_USERS_BUTTON."</a>]</td></tr></table></div></form>";
$main .= "<br><br>
<input type=hidden name=action value=delete>
</td>
</tr>
</table>";
$page = "subscribers";
require_once("includes/template.php");
?>