Forum Moderators: open
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<form action="go_HERE.php">
<table>
<tr><td><input type="text" name="foo1" /></td></tr>
</form>
<form action="go_THERE.php">
<tr><td><input type="text" name="foo2" /></td></tr>
</table>
</form>
<table>
<tr>
<td><form></td>
<td></form></td>
</tr>
<tr>
<td><form></td>
<td>More stuff</td>
</tr>
<tr>
<td>Another row</td>
<td></form></td>
</tr>
</table>
If each form (you are showing two) is complete, why don't you div them independently?
<div><form></form></div>
<div><form></form></div>
You'll need to provide more info... are these intended for navigation or a select list?