Pues es muy sencillo, te dejo un ejemplo:
Código PHP:
Ver original<table>
<tr>
<th>Columna 1</th>
<th>Columna 2</th>
<th>Columna 3</th>
</tr>
<?php
echo "<tr><td>".$fila[0]."</td>";
echo "<td>".$fila[1]."</td>";
echo "<td>".$fila[2]."</td></tr>";
}
?>
</table>
}
Se me puede haber escapado algo y se podría hacer de distintas maneras, pero esta es una de ellas.