OpenSim.VisitorBoard/Config.php

20 lines
610 B
PHP
Raw Normal View History

2020-11-28 08:19:59 +00:00
<?php
/***********************************************************************
* Script (c) Kubwa (https://kubwa.de)
*
* This script was release under BSD license.
* You are free to use, share or change this code as you wish. This
* header must be kept intact.
***********************************************************************/
$GLOBALS["CONFIG"] = array(
//Config for mysql server
2020-11-29 11:40:30 +00:00
"mysql" => array(
"server" => "127.0.0.1",
"user" => "VisitorBoard",
"pass" => "Password",
"db" => "visitorboard"
)
2020-11-28 08:19:59 +00:00
);
?>