Can you help me please???
I have a problem:
My problem is:
I have two classes
classOne.php
classTwo.php
and I have another class that is an extend to either classOne.php or classTwo.php.
So, I would like to be able to switch between these two extends by using a variable or some thing like that.
For Example
I would like to be able to do this
$theClass = "classOne"
class SysThree extends $theClass // as you know .. we can't do this............... What should I do????
{
}
//MAZ