short question to a little php problem.
class topclass {
protected $test;
//....
}
class childclass extends topclass {`
public static function accessVariable(){
//HOW CAN I ACCESS THE $Test VARIABLE OF THE SUPERCLASS HERE?
}...
Can somebody help me?
Thx very much in advance