I am writing a script in php to create a table. This is the html produced by the script.
<center>
<table border="1" cellpadding="15" cellspacing="0">
<th>A or B</th><th>Degree</th><th>Order</th><th> </th>
<tr align="center">
<td>A</td><td>1</td><td>0</td>
<td>
<form action="displayMonitorSets.php" method="POST">
<input type="submit" value="Remove"></form>
</td>
</tr>
</table>
</center>
It all works fine except that i get an added space under the "Remove" button. This is making the whole table look...er..well wrong. If i take the <form> tags out, its fine (no space), but i need the form tags there.
Can anyone suggest anything?