Forum Moderators: open
<form action=mypage.php?a=previous10
...
<INPUT type="submit" name="submit_button" value="Previous10">
</form>
<form action=mypage.php?a=next10
...
<INPUT type="submit" name="submit_button" value="Next10">
</form>
The code above is intended to show two buttons aligned horizontally
[Previous10] [Next10]
But instead it displays 2 buttons vertically even though i dont have any <BR>
[Previous10][Next10]
How can I make it aligned horizontally? Thanks
[edited by: Gian04 at 5:49 am (utc) on June 17, 2007]
How about just using a table:
<table>
<tr><td><form action="mypage.php?a=previous10">
<INPUT type="submit" name="submit_button" value="Previous10">
</form> </td><td><form action="mypage.php?a=next10">
<INPUT type="submit" name="submit_button" value="Next10">
</form>
</td>
</table>
Habtom