Created
May 24, 2016 04:10
-
-
Save awestmoreland/86adc32acbced023301ba219e08837b3 to your computer and use it in GitHub Desktop.
This file contains 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 | |
if($_POST['token'] == $my_expected_token) { | |
$user_name = $_POST['user_name']; | |
echo "Hey, $user_name! You talk to your mother with that mouth?"; | |
} | |
else { | |
// GTFO | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment