Advertisement
dbcalmada

DB Connect

May 5th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. <?php
  2. $link = mysqli_connect("127.0.0.1", "dbadmin", "p9zzW@", "contacts");
  3.  
  4. if (!$link) {
  5.     die("Error! Can't connect to the database!");
  6. } else {
  7.     die("Success!");
  8. }
  9.  
  10. mysqli_close($link);
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement