33 lines
467 B
PHP
33 lines
467 B
PHP
<?php
|
|
|
|
namespace config;
|
|
|
|
/**
|
|
* This clas is an container for the DBConf
|
|
*/
|
|
class DBConfig {
|
|
|
|
/**
|
|
* Address of the sqlserver
|
|
*/
|
|
public static $sqlServer = "localhost";
|
|
|
|
/**
|
|
* name of the database
|
|
*/
|
|
public static $sqlDBName = "geoDB";
|
|
|
|
/**
|
|
* user of the database
|
|
*/
|
|
public static $sqlDBUser = "geoDB";
|
|
|
|
/**
|
|
* password of the database
|
|
*/
|
|
public static $sqlDBUserPW = "VZrSAYvmcrntQ97b";
|
|
|
|
}
|
|
|
|
?>
|