2021-02-03 23:20:13 +01:00
|
|
|
<?php
|
|
|
|
|
2021-02-05 21:46:17 +01:00
|
|
|
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;
|
|
|
|
}
|
2021-02-03 23:20:13 +01:00
|
|
|
?>
|