Hi
Need some advice - Ive been going more and more OO in my coding, just coming into some best-practice issues...
Lets say I have a User object, and the user has some contact details... whats preferential, to call the getUserDetails() and include the layout HTML in that method, or to call getUserDetails() and have it return an array and then do the layout on the page, outside of a method?
Or is there a third option?