Advertisement
Guest User

Untitled

a guest
Aug 14th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2.     mysql_connect("localhost", "user", "password") or die(mysql_error()); //change to the details you used
  3.    
  4.     include('/filepath/login_function_file.php');
  5.    
  6.     $username = $_POST['username'];
  7.     $password = $_POST['password'];
  8.    
  9.     login($username, $password);
  10.  
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement