![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
28/06/2005, 03:49
|
| | Fecha de Ingreso: junio-2005 Ubicación: Madrid, España
Mensajes: 288
Antigüedad: 19 años, 7 meses Puntos: 1 | |
yo tengo echo algo similar, meto los datos en un array y despues para no ejecutar la consulta de nuevo ejecuto el array, lo unico que yo para mostrarlo lo hago de forma mas sencilla, lo hago con un while:
$i=0;
while($i<count($array_webs)){
?>
<tr>
<td><? echo $array_webs[$i][web] ?> </td>
<td><? echo $array_webs[$i][usu] ?> </td>
<td><? echo number_format($array_webs[$i][total], 2 , ',', '.') ?> </td>
<td><? echo number_format($array_webs[$i][target], 2 , ',', '.') ?> </td>
<td><? echo number_format($array_webs[$i][afin], 2 , ',', '.') ?> </td>
</tr>
<? $i++;
} |