Top "Smarty" questions

Smarty is a templating engine for PHP.

round in Smarty shows wrong result

In my Smarty 3 template I have this code: {$a=8.34} {$b=8.33} {$a-$b|round:2} Expected result is: 0.01 But I receive this: 0.0099999999999998 …

smarty rounding
Smarty - variable addition

I want to add a constant value to a variable in smarty. just like: {assign var='c' value='0'} $…

php smarty
Smarty how to get a first index from foreach?

Construction is this: <!-- projects list --> {if !empty($userObjects)} <select id="projects-list" tabindex="1" name="project"> {…

php foreach smarty
Smarty plugin for NetBeans

I am looking plugin for work with Smarty in NetBeans. I need coloring of my code and normal syntax analysys. …

php netbeans smarty netbeans-plugins
Smarty permissions problems

Smarty is complaining about permissions. I've written a small mvc framework for a project I'm working on and I need …

php templates smarty
Check if key exists in smarty array

I have an array that looks like this: array( 'name1' => array('city1', 'city2', 'city3'), 'name2…

php arrays smarty
How to make a java script array from php array?

Iam using PHP,Smarty configuration. Iam getting an array in PHP and sent it to tpl.I would like to …

php javascript jquery arrays smarty
How to parse/decode JSON object in smarty template?

I have the following code in my template file: {foreach from=$items item=entry} <pre> {$entry->nb_…

php smarty json smarty3
How to clear Smarty's Cache

The original owner of our company had the website designed using Smartys. I have updated the product page, but even …

php caching smarty
How to convert float to int in smarty

As i am new to smarty, I am not at able to convert floating number to int. Ex: 12.234 => 12 please …

php smarty