9 lines
322 B
PHP
9 lines
322 B
PHP
|
<?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;
|
||
|
|
||
|
?>
|