mirror of
http://git.frickel.earth/Tysox/BOS-Pinneberg.git
synced 2025-12-15 00:24:33 +01:00
[+] Admin Webinterface
This commit is contained in:
30
admin/config/config.inc.php
Normal file
30
admin/config/config.inc.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
class Config {
|
||||
|
||||
function getSQLHost() {
|
||||
return "127.0.0.1";
|
||||
}
|
||||
|
||||
function getSQLUser() {
|
||||
return "cmd";
|
||||
}
|
||||
|
||||
function getSQLPassword() {
|
||||
return "test";
|
||||
}
|
||||
|
||||
function getSQLDatabase() {
|
||||
return "test";
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* CREATE TABLE IF NOT EXISTS `users` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`username` text COLLATE utf8_unicode_ci NOT NULL,
|
||||
`password` text COLLATE utf8_unicode_ci NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
||||
*/
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user