Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/10/2009, 13:05
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 7 meses
Puntos: 2135
Respuesta: Agregar valores a un array en Smarty

Si quieres incrementar usa algo así:
Código:
{assign var="counter" value=1}
{foreach}
    {assign var="counter" value=$counter+1}
{/foreach}
Saludos.