index.php
include("login.php"); $body_template = "templates/login.tpl"; } else { include("$module.php"); $body_template = "templates/$module.tpl"; } else { $body_template = "templates/404.tpl"; } } else { include("home.php"); $body_template = "templates/home.tpl"; } } $smarty->assign('body',$body_template); $smarty->display('index.tpl');
index.tpl
{include file=$body}