Hi,
imagine this code:
class aaa {
function xxx() {
echo "aaa";
}
}
class bbb extends aaa {
function xxx() {
echo "bbb";
// how can I call here function xxx
// from parent class???
// something like super.xxx() in
// Java!
}
}
If you know the answer, please help...