如何通过smarty为每个页面分配标题?

时间:2010-02-16 01:29:10

标签: php smarty

我有很多页面,我想为每个页面分配标题如何id?

我指定主页但无法分配页面。变量将添加到header.tpl

页(contact.php,order.php,products.php)

我正在使用{$ hometitle} $ smarty->分配( 'hometitle',$ hometitle);

1 个答案:

答案 0 :(得分:0)

不确定我理解这个问题: 这有帮助吗?

在你的php中:

<?php
  $smarty = new Smarty();
  $smarty->assign('hometitle',$hometitle);
  $smarty->display('index.tpl');
?> 

在模板中:

<html>
  <head>
    <title>{$hometitle}</title>
  </head>
  <body>
    <!--body content here-->
  </body>
</html>