Guest User

dbh.inc.php

a guest
Apr 18th, 2018
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. <?php
  2.  
  3. $dbServername = "localhost";
  4. $dbUsername = "root";
  5. $dbPassword = "";
  6. $dbName = "loginsystem";
  7.  
  8. $conn = mysqli_connect($dbServername, $dbUsername, $dbPassword, $dbName);
Add Comment
Please, Sign In to add comment