Call Us
Tired of waiting? Call us at (866)644-6555, and your application will be completed over the phone. We will have an answer regarding your status within hours.
$allowed_args = ',firstname,middlename,lastname,suffix,email,phone,street,city,state,zip,purpose,occupancy,propertystreet,propertycity,propertystate,propertyzip,step,addressSync,';
foreach(array_keys($_POST) as $k) {
$temp = ",$k,";
if(strpos($allowed_args,$temp) !== false) { $$k = $_POST[$k]; }
}
$propertystreet = '';
switch ($step) { // decide what to do based on step
case 1: // if step is 1, or if
default: // no known step specified, display form
include_once('_form-one.inc.php');
break; // end of case 1/default for switch
case 2: //show user his submission for review
$_SESSION['uno'] = array('purpose'=>$purpose, 'propertystreet'=>$propertystreet, 'propertycity'=>$propertycity, 'propertystate'=>$propertystate, 'propertyzip'=>$propertyzip,'occupancy'=>$occupancy);
include_once('_form-two.inc.php');
break; // end of case 2 for switch
case 3: //send feedback and show thank you
if (isset($addressSync)) {
$city = $_SESSION['uno']['propertycity'];
$state = $_SESSION['uno']['propertystate'];
$zip = $_SESSION['uno']['propertyzip'];
$_SESSION['uno']['propertystreet'] = $street;
}
$_SESSION['dos'] = array('firstname'=>$firstname, 'lastname'=>$lastname, 'email'=>$email, 'phone'=>$phone, 'street'=>$street, 'city'=>$city, 'state'=>$state, 'zip'=>$zip, 'comments'=>$comments);
include_once('_form-process.inc.php');
?>
Thank You!
One of our experienced loan consultants will contact you promptly to confirm the receipt of your application and supply an answer regarding your loan status within hours.
break; // end of case 3 for switch } ?>