The only reason I can think of for that to happen would be if you
referred to $this->mysql_connect(...);

Then it would look for mysql_connect as a method of the class and
wouldn't find it.

Just guessing that this might be the problem.

Matt Friedman
Web Applications Developer
www.SpryNewMedia.com
Email: [EMAIL PROTECTED]
 

-----Original Message-----
From: Charles [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday January 22, 2002 10:25 AM
To: [EMAIL PROTECTED]
Subject: [PHP] OOP Problem

Hi,

i have create a simple php class to learn how to oop programming, like
this:

class mysqldb {
  var $dbconn;

  function OpenCon($DBHOST,$DBUSER,$DBPASS){
        $this->dbconn = mysql_connect($DBHOST,$DBUSER,$DBPASS);
  }

}

this is a simple example...

but when i inherit the class, 
php give me a error,
call to undefined function: mysql_connect()

php think that mysql_connect is my private function ?

Charles

Ps. sorry my poor english


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to