Advertisement
Guest User

Untitled

a guest
Aug 13th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. # config.php
  3. #
  4. # Make a connection with a MySQL database
  5.  
  6.  
  7.  
  8. $user = "root";
  9. $password = "";
  10. $host = "localhost";
  11. $dbname = "hongerwinter";
  12.  
  13.  
  14.  
  15. $db = mysql_connect ($host, $user, $password) or die ("Kan geen verbinding maken met de database");
  16.  
  17. mysql_select_db ($dbname, $db);
  18.  
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement