Thanks, will do.

"Red Wingate" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
Give this a read:

http://marc.theaimsgroup.com/?l=php-dev&m=107936530102181&w=2

Am Dienstag, 23. März 2004 15:16 schrieb Red Wingate:
> IIRC it was changed to
>   self::CONST_NAME recently
>
> interface Settings {
>    const UNAME = "somename";
>    const PWORD = "password";
>    const SERVER = "localhost";
> }
>
> class Conn implements Settings {
>    public function  __construct(){
>            $dbConn = mysql_connect(self::SERVER, self::UNAME,
self::PWORD);
>       }
> }
>
>  -- red

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

Reply via email to