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["username"],
4    $db_info["password"], $db_info["database"], $db_info["port"]);
5  }
6 }

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to