Guest User

Untitled

a guest
Feb 5th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2. require_once("scripts/config.php");
  3. require_once("scripts/helperClass.php");
  4. $username = strip_tags($_POST["username"]);
  5. $password = strip_tags($_POST["password"]);
  6. echo helperClass::checkCredentials($username, $password);
  7. ?>
  8.  
  9. <?php
  10. class helperClass {
  11. public static function checkCredentials($UserName, $Password) {
Add Comment
Please, Sign In to add comment