Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/03/2012, 03:12
solilopi
 
Fecha de Ingreso: enero-2012
Mensajes: 52
Antigüedad: 12 años, 3 meses
Puntos: 1
Pregunta Insertar tabla html en echo php

Tengo el siguiente código php:
Código PHP:
...
while (
$row mysql_fetch_array($resultado))
    {
        echo 
"<hr>"."<br/>".$row["marca"]." ".$row["modelo"].
        
" Matr&iacute;cula ".$row["matricula"]." ".$row["equipamiento"]." Precio: ".$row["pvp"]."<br/>";        
        
mostrarGaleria($row["matricula"]);
    }
... 
Me gustaría poder mostrar todo lo que hay en el While en una tabla, no tengo ni idea de como hacerlo. ¿Me puede ayudar alguien?. Gracias.