Hello people, I know this could be a stupid question but I´m new at PHP. I have this code:
<table width="90%" border="0" align="center" cellpadding="2" cellspacing="2">
<tr align="center" valign="middle" bgcolor="#666666">
<td width="25%" class="mytext"><a href="galerias.php?cod=<? echo $row["id_seccion"]; ?>">
<? echo $row["nombre"]; ?></a><br><img name="imagen" src="images/contenido/<? echo $row["imagen"]; ?>" border="1"></td>
<td width="25%" class="mytext"> </td>
<td width="25%" class="mytext"> </td>
<td width="25%" class="mytext"> </td>
</tr>
</table><br><br>
Obviously this shows the info just in te first cell of the table, I want the record to be shown in each of the four cells of the table and then, start to add rows as the records grow.
Thanks for the help !!!
