ok, effectively i have the following table
<table>
<tr><td rowspan=3></td><td></td></tr>
<tr><td></td></tr>
<tr><td></td></tr>
</table>
however, within the html table there are a few if's and else's (php). the script is out putting the script literally:
code:
echo("<td>");
if($blah) {
echo("that");
}
so i would get:
(startof<td>)
that
anyway i get a space below the start of each table cell.
is this the php or is it my retarded html?