Thanks for your reply those articles had been very usefull, but i still have some questions....
here is the code of my application
class FatherClass {
function myFunction(){//does something}
}
class sonClass {
//here is when i need to "redefine"
//the method
function myFunction(){//does something else}
}
I believe that is not the best way for redefining the method, i am actually redeclaring, what should be then the best way for redefining (overriding, is not perhaps be the proper word, english is not my main language, sorry)
the method, wich is clearly a way to give myFunction a polymorphic behavior.
Thanks Otto