- replaced <? with <?php for compatibility sake (see TODO and CODING_STANDARD to know more) - improved overall code lisibility
30 lines
451 B
Plaintext
30 lines
451 B
Plaintext
<?php
|
|
/*************************/
|
|
/* config file for appDB */
|
|
/*************************/
|
|
|
|
|
|
/*
|
|
* global params
|
|
*/
|
|
$apidb_debug = 0; //turns debugging on/off
|
|
|
|
/*
|
|
* api database info
|
|
*/
|
|
$apidb_dbuser = "wineowner";
|
|
$apidb_dbpass = "lemonade";
|
|
$apidb_dbhost = "localhost";
|
|
$apidb_db = "apidb";
|
|
|
|
|
|
/*
|
|
* user database info
|
|
*/
|
|
$userdb_dbuser = "wineowner";
|
|
$userdb_dbpass = "lemonade";
|
|
$userdb_dbhost = "localhost";
|
|
$userdb_db = "apidb";
|
|
|
|
?>
|