if ($user_info['phone'] != '') {
            $phone = $user_info['phone'];
        } else {
            $phone = '';
        }
        if ($user_info['date_created'] != '') {
            $date_created = $user_info['date_created'];
        } else {
            $date_created = 'NOW()';
        }
        if ($user_info['special_access'] != '') {
            $special_access_read = $user_info['special_access'];
            $special_access_write = $special_access_read;
        } else {
            $special_access_write = $special_access_new;
        }
        $Controller->update_user($customer_id, $is_staff, $email, $password, $name, $last_name, $phone, $date_created, $special_access_write, $user_id);
        echo "<script>document.location = 'index.php'</script>";
    }
} else {
    ?>
<div class='due-date' style='background-color: #909090; color: f5f5f5; font-size: 20px; font-weight: 700;'>
        User Info Already Created
    </div><BR>
    <div style="width: 75%; margin: 0 auto;">
    This page is intended for first time users to enter their name if it has not already been done. Once an account is created, the Name on the account or the company with which it is associated cannot be changed by the user. This helps to keep the chaos to a minimum and keep things organized. 
        <BR><BR>
        If you wish to change this information, please contact an administrator or member of the staff for help.
        <BR><BR>
<?php 
}