|
Posted by phpCodeHead on 06/07/07 15:06
On Jun 7, 5:52 am, Gene <ox.g...@wp.pl> wrote:
> i'm newcomer in using smarty and i have problem like this:
> i want to have one template file (e.g. index.tpl) in this file section
> which use variable {$content}.
> and two files *.php which are using the same template index.tpl and
> only change the content.
>
> for example:
> /*index.php*/
> $smarty = new MySmarty();
> $smarty->assign('content','INDEX');
> /*about.php*/
> $smarty=new MySmarty();
> $smarty->assign('content','ABOUT');
>
> how to do this, because this way it doesn't work?
give your second inherited MySmarty() object a different reference
name:
....
/*about.php*/
$smarty2 = new MySmarty();
$smarty2->assign('content','ABOUT');
hth,
gk
Navigation:
[Reply to this message]
|