| Chris Hubbard 2005-04-15, 4:00 pm |
| Yes the function function would probably work, but I'd like to
discourage it.
In my opinion a better strategy is to use fetch
(http://smarty.php.net/manual/en/lan...ction.fetch.php)
With fetch you will be maintain a consistent pattern, assign values,
parse the template to get HTML (or php that creates HTML), and then use
display on your page to show everything.
It's not that you want to include top_nav.php. It is that you want to
display the HTML nav elements that are (conditionally) built by
top_nav.php.
Use fetch to get whatever top_nav.php would have displayed (through
echo/print) and stay within the smarty boundaries.
Chris
On Apr 15, 2005, at 10:28 AM, pete M wrote:
> this might do it
> http://smarty.php.net/manual/en/lan...unction.php.php
>
>
>
> Jonathan Villa wrote:
>
> --
> Smarty General Mailing List (http://smarty.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
|