Smarty is one of PHP template Engine which is used to templating purpose and Today in this quick article, I am going to explain how to setup counter into smarty in any loop like for,foreach or while.
However, Before few days I want to use counter inside a foreach loop that accept a start value and increase by one until the loop continues.
so Let’s understand by code:
First of all take one variable and assign start value
1 2 3 4 5 6 7 | {foreach from=datas item=data} {counter} // this will increase value something like i++ {/foreach} |
You can check value by printing variable {i}
in loop.
To print array
into smarty, you can use below code:
1 2 3 | {$var|@debug_print_var} |
Read: To add Signup Bonus in X-Cart
That’s it.I hope this tutorial will be helpful to you.
Don’t hesitate to use this code in your projects and post your comments if you need help. As always, thanks for reading. Don’t Forget to Follow us on Twitter or Subscribe us to Get the Latest Updates.
Comments (1)