Update: the above code works fine, but when I edit my post, the forum changed it into something much bigger:
[table][tr]
[td][table][tr][td]Username1[/td][/tr][tr][td]UsernameA[/td][/tr][/table][/td]
[td][table][tr][td]Username2[/td][/tr][tr][td]UsernameB[/td][/tr][/table][/td][/tr][/table]
Now I'm confused why

Pretty simple.... The system restructure the code so that the machine understand the language.
table tag with one tr
[table]
[tr][/tr]
[/table]
First td
[td][table][tr][td]Username1[/td][/tr][tr][td]UsernameA[/td][/tr][/table][/td]
Second td
[td][table][tr][td]Username2[/td][/tr][tr][td]UsernameB[/td][/tr][/table][/td]
The main table is moving column wise left to right where in regular case a table can be imaginable moving raw wise top to bottom.
Hope now you get the change
