Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/03/2012, 14:24
Avatar de informacionsys
informacionsys
 
Fecha de Ingreso: mayo-2011
Ubicación: Bogota D.C
Mensajes: 793
Antigüedad: 12 años, 11 meses
Puntos: 76
Respuesta: No me muestra el contenido del array

hola

lo que tienes que hacer es recorrer el array

mira:

Código PHP:
Ver original
  1. $tablahtml.="<td><div align='right'>";
  2.  
  3.  
  4. $count = count($cant[canti]);
  5.  
  6. for($i = 0 ; $i < $count ;$i++){
  7.      
  8.        echo $cant[canti][$i]." &nbsp; ";
  9.  
  10. }
  11.  
  12. echo "</div></td>";