20 lines
591 B
PHP
20 lines
591 B
PHP
|
<?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
|
||
|
"mysql" => array(
|
||
|
"server" => "127.0.0.1",
|
||
|
"user" => "root",
|
||
|
"pass" => "***",
|
||
|
"db" => "visitorboard"
|
||
|
)
|
||
|
);
|
||
|
|
||
|
?>
|