Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/02/2006, 13:42
Avatar de claudiovega
claudiovega
 
Fecha de Ingreso: octubre-2003
Ubicación: Puerto Montt
Mensajes: 3.667
Antigüedad: 20 años, 6 meses
Puntos: 11
Prueba esto:

Código PHP:
<?php

/* Creo un LOOP */

for ($num=1$num <= $cuantos$num++)

{

  echo 
"<img  width=100 height=100 src=\"";
  echo 
$ver[$num];
  echo 
"\"";
  if (
$num == 0) echo "<br>";
}