Advertisement
Metropes

Untitled

May 1st, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2.  
  3. $DB_host = "localhost";
  4. $DB_user = "crazyfix_admin";
  5. $DB_pass = "**********";
  6. $DB_name = "crazyfix_garage";
  7.  
  8. $MySQLiconn = new MySQLi($DB_host,$DB_user,$DB_pass,$DB_name);
  9.  
  10. if($MySQLiconn->connect_errno)
  11. {
  12. die("ERROR : -> ".$MySQLiconn->connect_error);
  13. }
  14.  
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement