Ben basit bir sorum var. Ben smarty bir değişken adına 1,2,3 vb eklemek gerekir. Değişkenler $user1, $user2, $user3 vb Ben bu gibi basit bir döngü yapmak için smarty kullanımı vardır:
     {section name=user_info start=1 loop=$users}
       <tr>
        <td> User{$smarty.section.user_info.index} </td> // prints user1, user2, user3 etc
        <td>
         {$user} append this: {$smarty.section.user_info.index} // need to call $userX
        </td>
      </tr> 
    {/section} 
Ben variable info site to smarty her şeyi denedim.
