require("config.inc");
include("chksession.php");
include("fclr.inc");
if (isset($_POST['txtEmail'])) {
$sql_txt = "update newsletter SET email='{$_POST['txtEmail']}' where email_id = '".$_POST['id']."'";
if(mysql_query($sql_txt)) {
$mess = "Email successfully updated !";
} else {
$mess = "ERROR / Please try again !";
}
}
?>
require("scripts.php");?>
include("topbar-inc.php") ?>
Manage Newsletter User Email
To Edit the newsletter user email address change the text in the fields given and press submit. It will change the newsletter user email.
include ("backlink-inc.php")?>
if(isset($mess)){
?>
}
?>
if(isset($_REQUEST["id"])){
$sql=mysql_query("select * from newsletter where email_id='".$_REQUEST["id"]."'") or die(mysql_error());
if(mysql_num_rows($sql)>0){
$rs=mysql_fetch_array($sql);
?>