<?php // config.php :: Low-level app/database variables.
$dbsettings = Array(
"server" => "localhost", // MySQL server name. (Default: localhost)
"user" => "root", // MySQL username.
"pass" => "root", // MySQL password.
"name" => "game", // MySQL database name.
"prefix" => "dk", // Prefix for table names. (Default: dk) - WARNING! Changing this may cause errors.
"secretword" => "boooooo"); // Secret word used when hashing information for cookies.
$db_con=mysql_pconnect("localhost","root","root");
mysql_select_db("game",$db_con) or die ("<center>Ведутся технические работы на сервере!!</center>");
mysql_query("set character_set_client='cp1251'");
mysql_query("set character_set_results='cp1251'");
mysql_query("set collation_connection='cp1251_general_ci'");
?>