ValidateLoginDB('none'); if ( ! empty($thefunction)) { $errors = ValidateRequest($link, $userid); } $query = "SELECT id, firstname, lastname, company, email, phone, address, address2, city, state, country, zip FROM fb_users WHERE id='$userid';"; $result = mysql_query($query, $link); $rows = mysql_num_rows($result); if ($rows > 0) { $firstname = mysql_result($result, 0, "firstname"); $lastname = mysql_result($result, 0, "lastname"); $company = mysql_result($result, 0, "company"); $email = mysql_result($result, 0, "email"); $phone = mysql_result($result, 0, "phone"); $address = mysql_result($result, 0, "address"); $address2 = mysql_result($result, 0, "address2"); $city = mysql_result($result, 0, "city"); $state = mysql_result($result, 0, "state"); $zip = mysql_result($result, 0, "zip"); $country = mysql_result($result, 0, "country"); } if ( ! empty($HTTP_POST_VARS["firstname"])) { $firstname = $HTTP_POST_VARS["firstname"]; } if ( ! empty($HTTP_POST_VARS["lastname"])) { $lastname = $HTTP_POST_VARS["lastname"]; } if ( ! empty($HTTP_POST_VARS["company"])) { $company = $HTTP_POST_VARS["company"]; } if ( ! empty($HTTP_POST_VARS["email"])) { $email = $HTTP_POST_VARS["email"]; } if ( ! empty($HTTP_POST_VARS["phone"])) { $phone = $HTTP_POST_VARS["phone"]; } if ( ! empty($HTTP_POST_VARS["address"])) { $address = $HTTP_POST_VARS["address"]; } if ( ! empty($HTTP_POST_VARS["address2"])) {$address2 = $HTTP_POST_VARS["address2"]; } if ( ! empty($HTTP_POST_VARS["city"])) { $city = $HTTP_POST_VARS["city"]; } if ( ! empty($HTTP_POST_VARS["zip"])) { $zip = $HTTP_POST_VARS["zip"]; } $statecountry = GetStateCountry(); if ( ! empty($HTTP_POST_VARS["state"])) { $state = strip_tags($statecountry[0]);; } if ( ! empty($HTTP_POST_VARS["country"])) { $country = strip_tags($statecountry[1]); } if ( ! empty($HTTP_POST_VARS["best_contact"])) { $best_contact = $HTTP_POST_VARS["best_contact"]; $email_checked = $best_contact == "email" ? "checked" : ""; $phone_checked = $best_contact == "phone" ? "checked" : ""; $other_checked = $best_contact == "other" ? "checked" : ""; } if ( ! empty($HTTP_POST_VARS["other_contact"])) { $other_contact = $HTTP_POST_VARS["other_contact"]; } ?> ForteBio :: Contact Us: General Questions PageHeadCustom($userid); ?>
PageHeader($userid); $bannermenus = new BannerMenus_forte($link, $DB_USER_TABLE, $path); $bannermenus->Banner($userid); $bannermenus->MenuBar($menuloc); ?>
 

Contact Us: General Questions

 
SideMenuBar($menuloc); ?>

Please use this form to contact ForteBio with any non-technical questions. To reach our Technical Support department regarding technical issues or questions with a ForteBio product, please use our technical support form.

  
  
  
  
  
"; } else { echo ""; } ?>
  
"; ?>

  
> Email > Phone > Other: 
GetString(); ?> DisplayString(); ?>   
 
PageFooter(); ?>
0) { return $errors; } // Log the info in the database: LogFormData($link, "support", $firstname, $lastname, $email, $company, $description, "", "", $best_contact, $serialnum, $phone, $city, $state, $country, $zip, $other_contact); $recipients = "fortebiosupport@moldev.com"; $subject = "Support General Question from $firstname $lastname"; $body = "Support General Question submitted from:\n"; $body .= "\t$firstname $lastname\n"; $body .= "\tCompany: $company\n"; $body .= "\tEmail: $email\n"; $body .= "\tPhone: $phone\n"; $body .= "\tAddress: $address\n"; $body .= "\tAddress2: $address2\n"; $body .= "\tCity: $city\n"; $body .= "\tState: $state\n"; $body .= "\tCountry: $country\n"; $body .= "\tZip: $zip\n"; $body .= "\tBest way to contact: $best_contact"; if ($best_contact == 'other') { $body .= ": $other_contact"; } $body .= "\n\n"; $body .= "$description\n\n"; if ($recipients != "") { if (!empty($attach_temp) && ($attach_temp != "")) { $filename = array(0 => array('file' => $attach_temp, 'mimetype' => 'application/octet-stream', 'filename' => $attachment)); $errors['mail'] = mail_attached($recipients, $FROM_EMAIL, $subject, $body, $filename); } else { $headers = "From: $FROM_EMAIL"; mail($recipients, $subject, $body, $headers); } } GoToPage("support-thanks.html"); exit; } mysql_close($link); ?>