Advertisement
Guest User

Untitled

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