I am trying to make a form to update something. There are multiply buttons in the table. When i use the construction :
<table>
<tr><form .........>
<td>table header text
<?php
get data from table and put it in a row like this
?>
<td>name <td> data from database <td><input type=image .......>
repeat until database is empty
<form>
</table>
the table looks great but when i use the following construction
<table>
<tr>
<td>table header text
<?php
get data from table and put it in a row like this?>
<form .........><td>name <td> data from database <td><input type=image .......></form>
repeat until database is empty
</table>
the table expands every row making the table looking big.