This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
qemudb/include/config.php.sample

30 lines
451 B
Plaintext
Raw Normal View History

<?php
/*************************/
/* config file for appDB */
/*************************/
2004-03-15 16:22:00 +00:00
/*
* global params
*/
$apidb_debug = 0; //turns debugging on/off
/*
* api database info
*/
$apidb_dbuser = "wineowner";
$apidb_dbpass = "lemonade";
2004-03-15 16:22:00 +00:00
$apidb_dbhost = "localhost";
$apidb_db = "apidb";
2004-03-15 16:22:00 +00:00
/*
* user database info
*/
$userdb_dbuser = "wineowner";
$userdb_dbpass = "lemonade";
2004-03-15 16:22:00 +00:00
$userdb_dbhost = "localhost";
$userdb_db = "apidb";
2004-03-15 16:22:00 +00:00
?>