i need to access the methods of a child class from my base class... can i do this in php.. if so, how can i? $this->childmethod() doesnt work...
No, you can't, because the parent doesn't know about the child class. The child class can be many things, and it can or cannot have the method that the parent class is trying to call, so you can't make the call.
Diego