Advertisement
Guest User

Untitled

a guest
Jun 16th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. ./admin:
  2. checkLogin.php  index.php
  3.  
  4. ./database:
  5. blog.sqlite
  6.  
  7. ./includes:
  8. database.php  functions.php  magicquotes.inc.php
  9. footer.php    header.php     sidebar.php
  10.  
  11. <?php
  12. require_once('../includes/database.php');
  13.  
  14. $user = $_POST['sent_user'];
  15. $password = $_POST['sent_password'];
  16.  
  17. $sql = "SELECT 'salut'";
  18. $result = $db->query($sql);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement