thanks a lot, this is exactly what i needed.
if the construct of based class A accept arguments, i guess that construct
of class B must have the sames.
moreover, i guess that something like that must be written:
class A
{
function __construct($nameA)
{
...
}
}
class B extends A
{
function __construct($nameB)
{
parent::__construct($nameB);
}
}
am i right ?
thanks.
A.

