Advertisement
Guest User

Untitled

a guest
Aug 9th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <html>
  2. <?php
  3. $db_host = '5.179.230.100';
  4. $db_user = 'root';
  5. $db_pass = '123456';
  6. $link = mysqli_connect($db_host, $db_user, $db_pass);
  7. if (!$link) {
  8. die('Could not connect: ' . mysql_error());
  9. }
  10. mysqli_select_db("account") or die ("Datenbank konnte nicht ausgewählt werden");
  11. ?></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement