Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2. $mysql_server = "109.70.148.244";
  3. $mysql_user = "RICK";
  4. $mysql_password = "PASSWORD";
  5. $mysql_database = "altislife";
  6.  
  7. $connection = mysqli_connect($mysql_server,$mysql_user,$mysql_password,$mysql_database)
  8.  
  9. // Check connection
  10. if (!$connection) {
  11. die("Connection failed: " . mysqli_connect_error());
  12. }
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement