Foser Posted January 4, 2008 Share Posted January 4, 2008 I'm trying to search for some tutorial sites about this... But I can't seem to find any tutorials! If anyone knows any tutorial sites about php templating. Please post them up. Quote Link to comment https://forums.phpfreaks.com/topic/84471-core-php-templating/ Share on other sites More sharing options...
Daniel0 Posted January 4, 2008 Share Posted January 4, 2008 <?php function render_template($path) { ob_start(); eval('?>' . file_get_contents($path)); $data = ob_get_contents(); ob_end_clean(); return $data; } ?> Something like this? You can always add more advanced features. Quote Link to comment https://forums.phpfreaks.com/topic/84471-core-php-templating/#findComment-430370 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.