You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
641 B
25 lines
641 B
13 years ago
|
<?php
|
||
|
/*
|
||
|
* Created on 11.08.2008
|
||
|
*
|
||
|
* @copyright (c) 2009 animegame.eu
|
||
|
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public Licence
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
# Um die Datenbank nutzen zu koennen muss eine db.inc.php erstellt werden, bitte diese nicht in die Versionskontrolle einfügen!!
|
||
|
|
||
|
#####Online Bitte für localhost eintragen!!
|
||
|
$db_host = "localhost";
|
||
|
$db_user ="root";
|
||
|
$db_passwort ="jodiho82";
|
||
|
$db_name = "test_ag";
|
||
|
|
||
|
$main_db_name = "otherdatabasename";
|
||
|
$GLOBALS['mumble_db_name'] = "anotheradatabasename";
|
||
|
|
||
|
if(!isset($conn)){
|
||
|
$conn = mysql_connect($db_host, $db_user, $db_passwort);
|
||
|
$db = mysql_select_db($db_name, $conn);
|
||
|
}
|
||
|
?>
|