On Mon, 2002-06-03 at 12:45, Jared Boelens wrote:
> So am i to understand that i will have to do it in this manner?

*SNIP*

No no no... B extends A, and you have an instance of B. Just do this:

class A
{
        var $b;
        
        *snip*
}

class B
{
        function B($b)
        {
                $this->b = $b;
        }
}

That will work fine.

Regards,

Toby


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

Reply via email to