Smarty Master Pages

sc0tt

New Member
How can I create Master Pages like in ASP.NET using PHP and Smarty?I want to have several content place holders in the master page and simply fill them with almost big HTML chunks. So I'm looking for a better approach than what I currently have.\[code\]$content =<<< eol <div id="home"> <img src="http://stackoverflow.com/questions/3868461/images/jon.jpg" id="left-image" /> </div>eol;$smarty->assign('content', $content);$smarty->display('index.tpl');\[/code\]
 
Back
Top