Ok, this has been troubling me for ages but i couldn't be bothered trying to find out why...
I know one of you guys will know thew answer of the top of your head.
Why is it that when ever i use a <form></form> there is always a blank line added under the form?
i.e.
<html>
<head>
<title>send me</title>
</head>
<body>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
<tr>
<td><form method="POST" action="newpage.php" name="test"><input type="hidden" name="test" value="test">
<a href="javascript:test.submit();">send me!</a></form>
</td>
<td>Line1</td>
</tr>
<tr>
<td> <form method="POST" action="newpage.php" name="test"><input type="hidden" name="test" value="test">
<a href="javascript:test.submit();">send me!</a></form></td>
<td>Line 2</td>
</tr>
</table>
</body>
</html>
the result i want is
| sendme! | line 1 |
| sendme! | line 2 |
but it always comes out as
| sendme! | line 1 |
| | |
| sendme! | line 2 |
| | |
come on someone make my day!!
thanks again!