Last active
June 6, 2016 14:23
-
-
Save benmmurphy/c46b5a8e7ebeb9dfe79fb9709faa0708 to your computer and use it in GitHub Desktop.
zensend verify step 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$user = USERS[$username]; | |
try { | |
$verify->verify_response($user["msisdn"]); | |
header("Location: /login_success.php"); | |
} catch (Exception $e) { | |
header("Location: /login_fail.php"); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment