예제 #1
0
파일: class.db.php 프로젝트: kamz8/mailbot
 public function __construct()
 {
     $config_db = new ini_file();
     $config_db->setFileName(CONFIG);
     $file = $config_db->loadFile();
     $this->_db = $file['config_db']['default_db'];
     $this->_dir = $file['config_db']['localhost'];
     $this->_login = $file['config_db']['login'];
     $this->_pass = $file['config_db']['passwort'];
     $this->charset = $file['config_db']['charset'];
     //konfiguracja
     $baza = @mysql_connect($this->_dir, $this->_login, $this->_pass);
     if ($baza === false) {
         die('Nie można było nawiązac połączenia' . ' z powodu blendu:' . mysql_error());
     }
     mysql_query('SET NAMES "' . $this->_charset . '"');
     $ok = @mysql_select_db($this->_db);
     if ($ok === false) {
         die('Nie można było nawiązac połączenia' . ' z powodu blendu:' . mysql_error());
     }
 }