Added phpInterface and shellScripts

This commit is contained in:
2021-02-03 23:20:13 +01:00
parent 4c1fc4f5e7
commit 86cb486637
7 changed files with 372 additions and 0 deletions

View File

@ -0,0 +1,9 @@
<?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;
?>