/************************************************
* Product_updates.ecgi
* Description:
* Show registration page with some arguments
*
* Input argument:
* first_name
* last_name
* email
* status
************************************************/
//Include file
require("optin.inc.ecgi");
// According to the status, set the error message
if (isset($status))
if ($status == "1") // empty first name
$msg = "Please enter your first name!";
elseif ($status == "2") // empty last name
$msg = "Please enter your last name!";
elseif ($status == "3") // empty email address
$msg = "Please enter your E-mail Address!";
elseif ($status == "4") // invalid email address
$msg = "Please enter a valid E-mail Address!";
elseif ($status == "5") // valid, but sendmail failed
$msg = "Send E-mail failed, please usr another E-mail address!";
elseif ($status == "6")
$msg = "You have already registered!";
elseif ($status == "0")
$msg ="";
else
$msg = "System is busy, please try later!";
else
$msg="";
?>
Name Me!
include("$DOCUMENT_ROOT/metatags.inc.php") ?>
include("$DOCUMENT_ROOT/dm.htm") ?>