Files
geodb/geoapi/config/config.db.php
2013-06-20 12:05:04 +02:00

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";
}
?>