a70f7ed93d
### 1.1.2 (4.24.2004) ### - Fixed bug with default spell/town field contents. - Fixed bug with updating new spell on levelup. - Updated help file to point to new forums address. - Version info is now handled through lib.php, instead of config.php.
11 lines
550 B
PHP
11 lines
550 B
PHP
<?php // config.php :: Low-level app/database variables.
|
|
|
|
$dbsettings = Array(
|
|
"server" => "localhost", // MySQL server name. (Default: localhost)
|
|
"user" => "", // MySQL username.
|
|
"pass" => "", // MySQL password.
|
|
"name" => "", // MySQL database name.
|
|
"prefix" => "dk", // Prefix for table names. (Default: dk)
|
|
"secretword" => ""); // Secret word used when hashing information for cookies.
|
|
|
|
?>
|