<?php

define("DCR", "http://localhost/client/dcr/client.dcr"); // habbo.dcr link
define("EXTERNAL_TEXTS", "http://localhost/client/gamedata/external.php?id=external_texts"); // external texts link
define("EXTERNAL_VARS", "http://localhost/client/gamedata/external.php?id=external_variables"); // external vars link
define("IP", "127.0.0.1"); // ip
define("PORT", "1232"); // port
define("RELOAD_URL", "http://www.google.nl"); // reload URL
define("WEBSITE_URL", "http://www.google.nl"); // website URL

$dbhost = "localhost";
$dbuser = "root";
$dbpass = "PASSWORD";
$db = "holodb";

$connectie = mysql_connect($dbhost, $dbuser , $dbpass) or die(mysql_error());
mysql_select_db($db, $connectie);


?>