Esempio n. 1
0
    switch ($_POST['action']) {
        case 'changeusername':
            $status = $userObj->updateUsername() ? "changed" : "failed";
            header("Location: /account.php?username={$status}");
            break;
        case 'changeemail':
            $status = $userObj->updateEmail() ? "changed" : "failed";
            header("Location: /account.php?email={$status}");
            break;
        case 'changepassword':
            $status = $userObj->updatePassword() ? "changed" : "nomatch";
            header("Location: /account.php?password={$status}");
            break;
        case 'deleteaccount':
            $userObj->deleteAccount();
            break;
        default:
            header("Location: /");
            break;
    }
} elseif ($_POST['action'] == "resetpassword") {
    if ($resp = $userObj->resetPassword() === TRUE) {
        header("Location: /resetpending.php");
    } else {
        echo $resp;
    }
    exit;
} else {
    header("Location: /");
    exit;
}