1
0
mirror of https://github.com/fspc/ybdb.git synced 2025-02-28 18:43:23 -05:00
ybdb/local_configurations.php
Jonathan Rosenbaum 650682f81e New configuration format file.
* local_configurations.php allows personalized configurations for YBDB.PHP and database_functions.php

* Need to fix a bug that doesn't properly parse array configuration
2017-08-12 03:19:42 +00:00

17 lines
344 B
PHP

<?php
// Options for YBDB.php
$hostname_YBDB = "localhost";
$database_YBDB = "ybdb";
$username_YBDB = "admin";
$password_YBDB = "yblcatx";
// See Configurations/database_functions.php for more configuration options.
define("DEFAULT_SHOP_USER", "Stand Time");
define("DEFAULT_TRANSACTION_TYPE", "Stand Time");
define("CHANGE_FUND", 50);
?>