PHP how come this makes a gap every row that gets bigger?

Chris B

New member
The PHP's echo has nothing to do with visuals. Visuals are all HTML. Double check to make sure you have cell padding off, for that will push somethings away.
Good Luck!
If you need any further assistance/advice, feel free to contact me.
 
echo "
<tr>
<td rowspan='4'>test</td>
</tr>
";
echo"<table border='2'>
";

echo "
<tr>
<td rowspan='4'>test</td>
</tr>
";
echo "</table>";
 
Back
Top