if (!$myUser->Save()) {
    throw new SimplException('Error Saving Formspring Client Token', 2, 'Error: Error Saving Formspring Client Token :' . $details->response->username);
}
// Set the session cookie
if (!isset($_GET['delegate'])) {
    setcookie('session', $myUser->GetValue('sessionid'), time() + 3600 * 24 * 7);
} else {
    // Setup the relationship
    $myAccountAccess->SetValue('user_id', $_GET['delegate']);
    $myAccountAccess->SetValue('delegate_id', $myUser->GetPrimary());
    $myAccountAccess->SetValue('type', 'full');
    if (!$myAccountAccess->Save()) {
        throw new SimplException('Error Saving Delegate Information', 2, 'Error: Error Saving Delegate Information. Delegate:' . $_GET['delegate']);
    }
}
// See if this user already exists in the DB
$myAccountInfo->ResetValues();
$myAccountInfo->SetValue('user_id', $myUser->GetPrimary());
$myAccountInfo->GetInfo(NULL, array('user_id'));
// Add their new values
foreach ((array) $details->response as $field => $value) {
    $myAccountInfo->SetValue($field, $value);
}
$myAccountInfo->SetValue('user_id', $myUser->GetPrimary());
// Update the user information if found or insert if new
if (!$myAccountInfo->Save()) {
    throw new SimplException('Error Saving Formspring Client Bio', 2, 'Error: Error Saving Formspring Client Bio :' . $details->response->username);
}
// Redirect to the list page
header('Location: ' . PATH, true, 302);
die;