Tengo el siguiente código php:
Código PHP:
...
while ($row = mysql_fetch_array($resultado))
{
echo "<hr>"."<br/>".$row["marca"]." ".$row["modelo"].
" Matrí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.