I need a form button at the top of the page

Hi,<br />
<br />
I have the following page.<br />
<br />
<table width=100% cellpadding=0 cellspacing=0 height=20><br />
<tr><td><br />
<form action=editmessage method=post><br />
<input type=submit value=Edit Message><br />
</td></tr></table><br />
<table width=100% cellpadding=0 cellspacing=0><br />
<center><br />
<tr class=reporthd><br />
<td class=reporthd align=left><b>Select</td><br />
<td class=reporthd align=left><b>Title</td><br />
<td class=reporthd align=left><b>Content</td> <br />
<td class=reporthd align=left><b>Queue</td><br />
<td class=reporthd align=left><b>Priority</td><br />
</tr><br />
<tr><br />
<?php<br />
while ($myrow = mysql_fetch_array($result)) <br />
{<br />
echo "<td class=report align=left><input type=checkbox name=edituser value=".$myrow['title']."></td><br />
<td class=report align=left>".$myrow['title']."</td><br />
<td class=report align=left>".urldecode($myrow["content"])."</td><br />
<td class=report align=left>".$myrow['Queue']."</td><br />
<td class=report align=left>".$myrow['Priority']."</td></tr>";<br />
<br />
} <br />
<br />
if ($result == "") {echo "<tr><td class=report align=center colspan='5'><font face='Verdana, Arial, Helvetica, sans-serif' size='1' color='red'><b>No Results Found</b></td></tr>";}<br />
<br />
<br />
?><br />
<tr><td class=report colspan=5>&nbsp;</td></tr><br />
</table></form><br />
<br />
I need to get the form "submit" button to be at the top of the page, assuming that this is possible, however I cannot work out how to do it.<br />
<br />
I always thought I was very good at HTML hand code but now I guess I was fooling myself. Could someone please let me know where I am going wrong.<br />
<br />
Thanks<!--content-->Please ignore this message.<br />
<br />
Having brain fade.<!--content-->
 
Back
Top