2017-02-05 11:51:02 -06:00
|
|
|
<?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.
|
2017-02-05 11:57:55 -06:00
|
|
|
"prefix" => "sx", // Prefix for table names.
|
2017-02-05 11:51:02 -06:00
|
|
|
"secretword" => ""); // Secret word used when hashing information for cookies.
|
|
|
|
|
|
|
|
?>
|