I'm making a simple MVC framework with PHP. Now i have to decide whether i should use:
(Among this methods)
ob_start();
include(....);
ob_get_contents();
Or
include(....);
Seriously which one is the standard (or what should be?) .. since i can see all my $variables
(assigned all the way long above) are RE-CALLABLE from the Template files .. being called by either method above.