Advertisement
ctwillie77

Connection file

Jun 27th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php //login_names.php
  2.  
  3. $hn = 'localhost';
  4. $db = 'publications';
  5. $un = 'root';
  6. $pw = '';
  7.  
  8.  
  9. $conn = new mysqli($hn, $un, $pw, $db);
  10. if ($conn->connect_error) die($conn->connect_error);
  11. // if (!$conn->connect_error) {
  12. // echo "Connection Successful!";
  13. // }
  14.  
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement