View Full Version : Table Code and Rendering in PHP
I've noticed that in various PHP related programs such as vbulletin, if you enable HTML and try to add a table in a post, it places the table all the way down at the bottom of the post with a ton of white space above. Anyone know why and how to avoid this?
alan92rttt
01-19-2002, 12:24 AM
The reason for your problem is that the vbb passer adds a BR everytime you press enter in the mesage window.
you need to string you html into a really long line the {} below repsent the greater and less that symbols
{table}{tr}{td}text
2nd line{/td}{td}second column{/td}{/tr}{/table}
<table border=1><tr><td>text
2nd line</td><td<second Column</td></tr></table>
alan92rttt
01-19-2002, 12:25 AM
hum I guess html is not enabled here. Well that would have worked :D
vBulletin® v3.7.0, Copyright ©2000-2009, Jelsoft Enterprises Ltd.