Create an Account
Joining Mozilla Update is easy just fill out the form below and click the join button.
Already Have an Account?
If you already have signed-up for an account, you don't need to sign-up again. Just use your e-mail address and password and login.
If you don't remember the password for your acconut, you can recover a forgotten password.
Processing New Account Request, Please Wait...\n";
//Gather and Filter Data from the Submission Form
if ($_POST["email"]==$_POST["emailconfirm"]) {$email = escape_string($_POST["email"]);} else { $errors="true"; $emailvalid="no";}
if ($_POST["password"]==$_POST["passwordconfirm"]) {$password = escape_string($_POST["password"]);} else { $errors="true"; $passwordvalid="no"; }
if ($_POST["name"]) { $name = escape_string($_POST["name"]); } else { $errors="true"; $namevalid="no"; }
$website = escape_string($_POST["website"]);
//Check e-mail address and see if its already in use.
if ($emailvalid !="no") {
$sql = "SELECT `UserEmail` from `userprofiles` WHERE `UserEmail`='$email' LIMIT 1";
$sql_result = mysql_query($sql, $connection) or trigger_error("MySQL Error ".mysql_errno().": ".mysql_error()."", E_USER_NOTICE);
if (mysql_num_rows($sql_result)>"0") {$errors="true"; $emailvalid="no"; }
}
if ($errors == "true") {
echo "Errors have been found in your submission, please go back to the previous page and fix the errors and try again.
\n";
if ($emailvalid=="no") {echo " Your e-mail addresses didn't match, or your e-mail is already in use.
\n"; }
if ($passwordvalid=="no") {echo " The passwords you entered did not match.
\n"; }
if ($namevalid=="no") {echo " The name field cannot be left blank.
\n"; }
include"$page_footer";
echo "