とあるプログラマの備忘録

都内某所に住むプログラマが自分用に備忘録を残すという趣旨のブログです。はてなダイアリーから移動しました!

Smarty でforっぽい動きをさせる

いつも忘れる。
探すのめんどい。。

<div style='padding-left:5px'>
    <select name='amount'>
        {section name=cnt loop=10}
            <option value={$smarty.section.cnt.index}>{$smarty.section.cnt.index}</option>
        {/section}
    </select>
</div>