xenophobia Posted April 23, 2007 Share Posted April 23, 2007 Im using the smarty template engine to build a framework. Let go into my problems: I have index.tpl: <html> <head> <title>{$pagetitle}</title> </head> <body> {$topbanner} {$body} {$pagebottom} </body> </html> And for $topbanner, $body, $pagebottom, I wish to include from other .PHP file with templates (.tpl) Example I have main.php: $smarty->display("main.tpl"); I wan everything happends inside main.php, including the templates will goes into the {$body} part in the index.tpl. Issit anyway possible of doing it? Using the {capture} function will not be the practical way for me... Any help or comments will be appreciates. By, xenophobia Link to comment https://forums.phpfreaks.com/topic/48293-solved-template-engine-question/ Share on other sites More sharing options...
xenophobia Posted April 23, 2007 Author Share Posted April 23, 2007 Just found the solution. {include file='main.tpl' assign=body} This will automatically included in the body part. Sorry to bother you guys. Thanx for viewing... Link to comment https://forums.phpfreaks.com/topic/48293-solved-template-engine-question/#findComment-236090 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.