Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.63 KB | None | 0 0
  1. <? // Configuration file
  2.  
  3. // Website Details
  4.     $sitename = "Your site title";
  5.     $emu = "Arcemu";
  6.  
  7. // Database Credentials
  8.     // If you do not know how to set up the database information by hand,
  9.     // use the pre-created settings editor your site was given.
  10.     $mysql_host = "127.0.0.1"; // Mysql Server IP
  11.     $mysql_rdb = "realmd"; // Mysql Realm Database
  12.     $mysql_user = "admin"; // Mysql Username Information
  13.     $mysql_pass = "ascent"; // Mysql Database Password
  14.  
  15.     // Connect to Database
  16.     $rcon = mysql_connect($mysql_host, $mysql_user, $mysql_pass) or die(mysql_error());
  17.     $rdb = mysql_select_db($mysql_rdb, $rcon) or die(mysql_error());
  18.  
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement