taekwondokid42
New Member
- Messages
- 268
- Reaction score
- 0
- Points
- 0
Here is the code I'm using, I have 3 tables:
<?
echo "<table border = \"1\" width = \"13%\">";
//stuff that goes in the table
echo "</table>";
echo "<table border = \"1\" width = \"35%\">";
//stuff in the table
echo "</table>";
?>
<table border = "0" align = "center" valign = "bottom"><tr><td>
//more stuff in the table
</td></tr></table>
The tables pop up as
table
table
table
All three tables stack on top of eachother. The third one is centered, but it is not at the bottom like I would like it to be. I would prefer if they looked like this:
table table
table
does anyone have any ideas whats wrong with my script
<?
echo "<table border = \"1\" width = \"13%\">";
//stuff that goes in the table
echo "</table>";
echo "<table border = \"1\" width = \"35%\">";
//stuff in the table
echo "</table>";
?>
<table border = "0" align = "center" valign = "bottom"><tr><td>
//more stuff in the table
</td></tr></table>
The tables pop up as
table
table
table
All three tables stack on top of eachother. The third one is centered, but it is not at the bottom like I would like it to be. I would prefer if they looked like this:
table table
table
does anyone have any ideas whats wrong with my script