Hi,

i have a class A with some properties.
i have a class B with several public functions (i.e : Render())

i would like to do something like that :

class B()
{
B()
{
}

public function Render()
{
 ...
}
}

class A
{
private $myotherclass;

A()
{
 $this->myotherclass = new classB();
}

public function test()
{
 $this->myotherclass->Render();
}
}

however, i'm not able to access to ->Render() of class B from Class A
property. Where could be the problem ?

--
Alain
------------------------------------
Windows XP SP2
PostgreSQL 8.1.4
Apache 2.0.58
PHP 5

Reply via email to