assume $this->db is an object. $db->host is a string "localhost".
ehco $this->db->host;
// will output
localhost
but
ehco " $this->db->host ";
// whill output
Object id #2->host
is that a bug. or just have to workout by myself?
Thanks for all your g
the correct answer to this bug is:
you have to load php_mbstring.dll before you load php_exif.dll. like:
extension=php_mbstring.dll
...
extension=php_exif.dll
not like:
extension=php_exif.dll
...
extension=php_mbstring.dll
Tomasen
<[EMAIL PROTECTED]> wrote in message
news:[EMAIL PRO
the follow script throw an error like this:
Fatal error: Can not call constructor in D:\-=WEB=-\include\database.php on
line 3
but it was working fine under PHP5RC3
1 class CDatabase extends mysqli {
2 function __construct($db_info ){
3 parent::__construct($db_info["hostname"], $db_info["usern
3 matches
Mail list logo