hi everyone . Does anybody know how to call a function from a user class within another class ?
for example
class A{ function myfunc(){ .... } }
class B{ function funcB(){ myfunc(); } }
Something like that ? How are we suppose to do it?
Thanks!!