![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
23/05/2010, 18:12
|
![Avatar de wiwi74](http://static.forosdelweb.com/customavatars/avatar220987_1.gif) | | | Fecha de Ingreso: marzo-2008
Mensajes: 515
Antigüedad: 16 años, 11 meses Puntos: 10 | |
Respuesta: Consulta array Tambien podria hacerlo asi:
$array['tipo']="precio";
//list recoge las claves y los valores del array en cada iteracion
while (list($k,$v) = each($array)){
echo $k."<br />";
echo $v."<br />";
} |