Jump to content

[SOLVED] Template Engine Question


xenophobia

Recommended Posts

Im using the smarty template engine to build a framework.

Let go into my problems:

I have index.tpl:

<html>

    <head>

        <title>{$pagetitle}</title>

    </head>

    <body>

        {$topbanner}

        {$body}

        {$pagebottom}

    </body>

</html>

 

And for $topbanner, $body, $pagebottom, I wish to include from other .PHP file with templates (.tpl)

 

Example I have main.php:

$smarty->display("main.tpl");

I wan everything happends inside main.php, including the templates will goes into the {$body} part in the index.tpl.

 

Issit anyway possible of doing it? Using the {capture} function will not be the practical way for me...

Any help or comments will be appreciates.

 

By,

xenophobia

Link to comment
https://forums.phpfreaks.com/topic/48293-solved-template-engine-question/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.