well, redesign, so you have a table( then its updated everytime you have a submit-event)
.....
former html-code
<frame name="top" src="form.html">
<frame name="bottom" src="results.php">
turns to:
...
<table>
<tr>...
<?php
include 'forms.html';
?>
</tr>
<tr>...
<?php
include 'results.php';
?>
</tr>
</table>
you'll have to make sure, that no other <html><body>-tags are in your forms/results-files
but then it will work fine