11 lines
515 B
PHP
11 lines
515 B
PHP
|
<?php // config.php :: Low-level app/database variables.
|
||
|
|
||
|
$dbsettings = Array(
|
||
|
"server" => "localhost", // MySQL server name. (Usually localhost.)
|
||
|
"user" => "", // MySQL username.
|
||
|
"pass" => "", // MySQL password.
|
||
|
"name" => "", // MySQL database name.
|
||
|
"prefix" => "", // Prefix for table names.
|
||
|
"secretword" => ""); // Secret word used when hashing information for cookies.
|
||
|
|
||
|
?>
|