Friday, May 18th 2012, 3:18pm UTC+2
You are not logged in.
|
|
PHP Source code |
1 2 3 4 5 6 7 8 9 10 11 12 |
<?php
class SQLConfig
{
var $BASEPATH = "die URL zur Wunschbox"; //Momentan Funktionslos
var $HOST = "Mysql host";
var $USER = "msql benutzername";
var $PW = "mysql passwort";
var $DB = "mysql datenbank";
var $PREFIX = "mysql Datenbank Prefix";
}
?>
|
|
|
PHP Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
<?php
// ####################################################################################################
// # Wunschbox v2.0.0 Alpha3 #
// ####################################################################################################
// # Copyright © 2009 by Raphael Bornhauser (kintaro) #
// # Contact: admin@kintaro.ch #
// # Homepage: http://www.kintaro.ch #
// # Based on Wunschbox v1.3.3 by Andreas Bieder (Cluster) #
// ####################################################################################################
// # Leave this header in every file !!! #
// # #
// ####################################################################################################
// # Sichtbare und unsichtbare Copyright Hinweise dürfen ohne ausdrückliche Zustimmungen #
// # der Urheberrechte-Inhaber (wie oben) nicht entfernt oder verändert werden. #
// ####################################################################################################
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
?><?php
class SQLConfig
{
var $BASEPATH = "die URL zur Wunschbox"; //Momentan Funktionslos
var $HOST = "host"; //meistens localhost
var $USER = "benutzername"; //Z.B. Root oder dein mysql Benutzernamen
var $PW = "passwort"; //Das MySQL Passwort
var $DB = "datenbank"; //Der Name der Mysql datenbank den du bei der Installation angegebn hast
var $PREFIX = "Prefix"; //Der Datenbank Prefix (Standart wb_)
}
?>
|