I was wondering if you could help me out..
I have two classes, one extends the other.. Class B will be extended by various different objects and used for common databas
I'm not sure I fully understand what you are asking, but you can call the parents construct method from the child's constructor
parent::__construct();
That's the only option I know of.