Advertisement
Guest User

Untitled

a guest
May 16th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. $host['naam'] = 'localhost';            // my host
  3. $host['gebruikersnaam'] = 'root';       // my database username
  4. $host['wachtwoord'] = '';           // my database password
  5. $host['databasenaam'] = 'bubblesdev';       // my database name
  6.  
  7. $servername = "Villain MS";     //Your servers name
  8. $serverip = "38.99.171.90";    //Replace with your WAN IP if public
  9. $loginport = "8484";        //Don't change
  10. $sql_db = "bubblesdev";         //DB Name
  11. $sql_host = "localhost";    //DB Host
  12. $sql_user = "root";         //DB User
  13. $sql_pass = "";         //DB Password
  14. $logserv_name = "Server: VillainMS";         //Status Server Name
  15. $offline = "<font color='red'><b><u>Offline</u></b></font>";  //Displays Offline Status
  16. $online = "<font color='green'><b><u>Online</u></b></font>";    //Displays Online Status
  17. $style = "black";       //Style name you wish to use (Must be name of the folder kept under Styles directory)
  18.                         //By default the styles to choose from are: white, red, black and blue
  19.  
  20. $db = mysql_connect($host['naam'], $host['gebruikersnaam'], $host['wachtwoord']) OR die ('Check config.php');
  21. mysql_select_db($host['databasenaam'], $db);    //Dont edit!
  22.  
  23. $styledir = "styles/".$style; //Dont edit!
  24. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement