Hi there!

It sounds like you do not have mysql support compiled into PHP.  You didn't
say if you were using PHP on Windows or Linux so you might want to read the
documentation for the respective version that you have downloaded to find
out how to compile MySQL support into your PHP installation.

HTH

Sam Masiello
Software Quality Assurance Engineer
Synacor
(716) 853-1362 X289
[EMAIL PROTECTED]

----- Original Message -----
From: "Charles" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 22, 2002 10:25 AM
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