 status: user broj poruka: 4 | class mysql { var $conn. var $res.
function connect() { if (!$this->conn) { global $config_dbname, $config_dbuser, $config_dbhost, $config_dbpass. $this->conn = @mysql_connect($config_dbhost, $config_dbuser, $config_dbpass). if (!$this->conn) { header(`Location: error.php`). exit. }
if (!mysql_select_db($config_dbname)) { header(`Location: error.php`). exit. } //
mysql_query(`SET NAMES utf8`). } } }
ne znam gde je greska. ako izbrisem if (!$this->conn) { header(`Location: error.php`). exit. }
if (!mysql_select_db($config_dbname)) { header(`Location: error.php`). exit. }
nece da se poveze sa bazom |