It's supposed to work by the following BBCode, but as you can see in my previous post, it doesnt:
It works, but when you add a table in editor mode, you only get the following:
[table][tr][td][/td]
[/tr]
[/table]
which ISN'T enough to get a full table working. what's missing is:
[table border="5"]
[tr]
[td]1A[/td]
[td]1B[/td]
[td]1C[/td]
[/tr]
[tr]
[td]2A[/td]
[td]2B[/td]
[td]2C[/td]
[/tr]
[tr]
[td]3A[/td]
[td]3B[/td]
[td]3C[/td]
[/tr]
[/table]
[tr][/tr] = One row of boxes, between this goes the following code, which gives us boxes
[td][/td]= one box, between these you need to put the text that goes in the box.
so to get what i have in the other post:
[table border="2"][tr][td]1A[/td]
[td]1B[/td]
[/tr]
[tr][td]2A[/td]
[td]2B[/td]
[/tr]
[/table]
[table border="2"] = Start the table, tell the code how thick the lines need to be
[tr] = Start a row
[td]1A[/td][td]1B[/td] = Fill in two boxes/'columns' in that row, with text inbetween the [td][/td]
[/tr] = end the row
[tr] = start a next row
[td]2A[/td] [td]2B[/td] = same as earlier
[/tr] = same as earlier
[/table] = finish the table
and there you have it! tables on this forum, the how to do it!