Ver Mensaje Individual
  #6 (permalink)  
Antiguo 08/06/2007, 13:03
GPS
 
Fecha de Ingreso: diciembre-2003
Ubicación: Montevideo, Uruguay
Mensajes: 110
Antigüedad: 21 años
Puntos: 0
Re: Listar consulta SQL con Smarty

Eso fue lo primero que habia intentado pero no se porque no puede.

Al final lo que hice fue lo siguiente

Codigo php:
Código PHP:
$sql "select * from propiedades where tipo = 1";
$res mysql_query($sql);
$i=0;
while (
$row mysql_fetch_array($res)) {
    
$direccions[$i] = $row['direccion'];
    
$descripcions[$i] = $row['descripcion'];
    
$i++;
}

$smarty->assign('direcciones',$direccions);
$smarty->assign('descripciones',$descripcions); 
Codigo tpl:
{section name=propiedad loop=$direcciones}
Direccion: {$direcciones[propiedad]}<br>
Descripcion: {$descripciones[propiedad]}<br>
{/section}

Esto funciona correctamente. Pero si alguien conoce alguna forma mas fácil de hacerlo avisen!

Saludos