Vielen Dank für die Antwort. Leider komme ich immernoch nicht ganz weiter.
myxotod.class.php:
PHP
class myxotod {
public function myxotod() {
require('includes/cfg/config.cfg.php');
require('includes/classes/datenbank.class.php');
$db = new datenbank;
$db->setConfig($config);
}
}
datenbank.class.php:
PHP
public function datenbank() {
$config = $this->config;
$this->host = $config['host'];
$this->username = $config['username'];
$this->password = $config['password'];
$this->datenbank = $config['datenbank'];
$this->verbindung = @mysql_connect($this->host, $this->username, $this->password);
if(!$this->verbindung) {
$this->error(4);
} else {
if(!@mysql_select_db($this->datenbank, $this->verbindung)) {
$this->error(5);
} else {
$this->connected = true;
mysql_query("SET NAMES 'utf8'", $this->verbindung);
mysql_query("SET CHARACTER SET 'utf8'", $this->verbindung);
$this->query_counter = 0;
}
}
}
public function setConfig($config) {
$this->config = $config;
}
Alles anzeigen
Leider kommt der Inhalt des $config-Arrays nicht in der Datenbankklasse an
Wieso sollte ich lieber require statt include verwenden?