Hi guys, was wondering if someone could explain this to me. Its my understand in MVC that Models should be used for data acquisition only - they should be outputting anything. My issue is what about application errors? Like say i have a get_user_by_id() function in my Model and it’s an invalid id. Should i use show_error() in my Model or return FALSE and use show_error() in my Controller ?
Thanks in advance!
