2 changed files with 11 additions and 9 deletions
@ -1,9 +1,11 @@
|
||||
<?php |
||||
|
||||
static $mysqlserver = 'mysql.mydomain'; //Host |
||||
static $mysqluser = 'shoppingList'; //User [It's recommended to not use root] |
||||
static $mysqlpw = 'somePassword'; //Password |
||||
static $mysqldb = 'shoppingList'; //Database |
||||
static $mysqlPort = 3306; |
||||
|
||||
class Configuration |
||||
{ |
||||
public static $mysqlserver = 'mysql.mydomain'; //Host |
||||
public static $mysqluser = 'shoppingList'; //User [It's recommended to not use root] |
||||
public static $mysqlpw = 'somePassword'; //Password |
||||
public static $mysqldb = 'shoppingList'; //Database |
||||
public static $mysqlPort = 3306; |
||||
} |
||||
?> |
Loading…
Reference in new issue