Rather than use a full-blown PHP MVC, I\'m designing one that will best-fit my uses. I have the basic framework done, and have coded the models and controllers I\'ll need to
Okay, I would really try to keep my Views as logic-free as possible. If you need to switch anything based on e.g. the result of a model method, put a controller in place that delegates the rendering.
Just make sure you follow the basic idea: Do your stuff in the models, Tell your models what to do from your controllers and also tell your views what to show from your controllers.