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 Quote Link to comment 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... Quote Link to comment 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.