Register for Literature Downloads and Product Registrations
SideMenuBar($menuloc);
?>
Registering here allows you to download literature from our Learning page and allows you to register products to get the most up-to-date information such as new application information and software updates.
Customers in the USA can purchase our products via our online store — click Ordering in the main menu or click Shop at the top of our website. Our online store requires a separate registration so that we have your complete shipping information. You do not need to register for online shopping to request quotes or if you are outside the USA.
Questions? Please email fortebio_info@pall.com
PageFooter();
?>
emails do not match";
}
if (empty($city) || ($city == "")) {
$errors['city'] = "required";
}
if (empty($state) || ($state == "")) {
$errors['state'] = "required";
}
if (empty($country) || ($country == "")) {
$errors['country'] = "required";
}
if (empty($company) || ($company == "")) {
$errors['company'] = "required";
}
if (empty($zip) || ($zip == "")) {
$errors['zip'] = "required";
}
if (empty($password) || ($password == "")) {
$errors['password'] = "required";
}
if ($password != $password2) {
$errors['password2'] = "passwords do not match";
}
if (empty($more)) {
$errors['consent'] = "choose one";
}
// Check for duplicate email:
$userid = 0;
$query = "SELECT id, email, validated, blocked FROM fb_users WHERE email='$email';";
$result = mysql_query($query, $link);
$rows = mysql_num_rows($result);
if ($rows > 0) {
$userid = mysql_result($result, 0, "id");
$validated = mysql_result($result, 0, "validated");
$blocked = mysql_result($result, 0, "blocked");
// If this user was blocked, don't let them register:
if ($blocked == 1) {
$errors["email"] = "
Invalid email (please contact ForteBio)";
return $errors;
}
// If this user has not been validated, it's probably because they subscribed to the
// newsletter, but didn't actually register. So, let them register.
// Otherwise, we'll assume this is just a duplicate email:
else if ($validated == 1) {
$errors["email"] = "duplicate email";
}
}
// Check for invalid or blocked domains:
$atpos = strpos($email, "@");
if ($atpos === false) {
$errors["email"] = "Invalid email address";
} else {
$domain = strtolower(substr($email, $atpos + 1));
$query = "SELECT id, company, domain FROM fb_domains WHERE domain = '$domain';";
$result = mysql_query($query, $link);
$rows = mysql_num_rows($result);
if ($rows > 0) {
$errors["email"] = "
Invalid email (please contact tech support)";
}
}
if (count($errors) > 0) {
return $errors;
}
// Update user or create a new one:
$password_md5 = md5($password);
if ($userid == 0) {
// Create the new user:
$validation_code = GeneratePassword();
$query = "INSERT INTO fb_users (created, firstname, lastname, email, password, validation_code, company, title, phone, address, address2, city, state, country, zip, registered_on_site, consent) VALUES (NOW(), '$firstname', '$lastname', '$email', '$password_md5', '$validation_code', '$company', '$title', '$phone', '$address', '$address2', '$city', '$state', '$country', '$zip', 'fortebio', '$more');";
$result = mysql_query($query, $link);
// Get the ID of the newly created record:
$query_id = "SELECT LAST_INSERT_ID() as id;";
$result_id = mysql_query($query_id, $link);
$rows_id = mysql_num_rows($result_id);
$userid = 0;
if ($rows_id > 0) {
$userid = mysql_result($result_id, 0, "id");
}
mysql_free_result($result_id);
} else {
// Update existing user:
$validation_code = GeneratePassword();
$query = "UPDATE fb_users SET created=NOW(), firstname='$firstname', lastname='$lastname', password='$password_md5', validation_code='$validation_code', company='$company', title='$title', phone='$phone', address='$address', address2='$address2', city='$city', state='$state', country='$country', zip='$zip', registered_on_site='fortebio', consent='$more' WHERE id=$userid;";
$result = mysql_query($query, $link);
}
// Send validation email:
SendValidationEmail($link, $userid, "", "&request=$request&docid=$docid");
// Route to sales reps - disabled for now:
$repemails = RouteLeadToRep($link, $userid, 0);
//SendRegistrationFeedback($link, $firstname, $lastname, $email, $repemails);
// ---------------------------------------------------------------------------------------------------------------
// 8/2017 - Marketo Save
// ---------------------------------------------------------------------------------------------------------------
include_once($path.'common/marketo.php');
$query = "SELECT * FROM fb_users WHERE id=$userid;";
$u_result = mysql_query($query, $link);
$user = mysql_fetch_assoc($u_result);
$leads = new MultipleLeads();
$leads->filterType = "email";
$leads->filterValues = array($user["email"]);
$leads->fields = array("email", "firstName", "lastName");
$lead1 = new stdClass();
$lead1->email = $user["email"];
$lead1->registrationDate = date('Y-m-d G:i:s');
if($user["firstname"]){ $lead1->firstName = $user["firstname"]; }
if($user["lastname"]){ $lead1->lastName = $user["lastname"]; }
if($user["city"]){ $lead1->city = $user["city"]; }
if($user["state"]){ $lead1->state = $user["state"]; }
if($user["zip"]){ $lead1->postalCode = $user["zip"]; }
if($user["country"]){ $lead1->country = $user["country"]; }
if($user["company"]){ $lead1->company = $user["company"]; }
$lead1->forteBioOptOut = strip_tags($HTTP_POST_VARS["opt-out"]) ? strip_tags($HTTP_POST_VARS["opt-out"]) : 0;
$lead1->fBPassword = strtolower(substr($more, 8));
$upsert = new UpsertLeads();
$upsert->input = array($lead1);
$upsert->postData();
// ---------------------------------------------------------------------------------------------------------------
// ---------------------------------------------------------------------------------------------------------------
GoToPage("registration-thanks.html?reg=$reg&request=$request&docid=$docid&email=$email");
exit;
}
mysql_close($link);
?>