Skip to content

Instantly share code, notes, and snippets.

@evandrix
Forked from trietptm/gist:4466904
Created January 7, 2013 04:44
Show Gist options
  • Save evandrix/4472400 to your computer and use it in GitHub Desktop.
Save evandrix/4472400 to your computer and use it in GitHub Desktop.
<?php
$user = $_POST['user'];
$pass = $_POST['pass'];
if ($user == "admin" && $pass == "pass") {
//valid login
} else {
//invalid login
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment