<?php $shablon = '<html> <head> <title>test</title> </head> <body> {MENU} </body> </html>'; $menu = "<a href=\"#\">Меню</a>"; $men = str_replace ("{MENU}", $menu , $shablon ); echo $men; ?>
<?php require_once('./Smarty.class.php'); $smarty = new Smarty(); $smarty->template_dir = './templates/'; $smarty->compile_dir = './templates_c/'; $smarty->config_dir = './configs/'; $smarty->cache_dir = './cache/'; $smarty->assign('menu', 'Меню'); $smarty->display('shablon.tpl'); ?>