Go to advanced posting and use WYSIWYG (What you see is what you get.) It's the button in the top left. It lets you see the coding you've done as it will appear in your post. If you don't want to, I'll figure out how to actually code it.
So, I did a little bit of searching.
[TABLE="class: outer_border, width: 500, align: left"]
So, this is the main problem. Instead of just [table], you have to have these special elements in.
the "class:" part defines what kind of borders it has, use outer_border if you want a border around the whole table but not between cells, use grid if you want a border between everything. Delete the "class:" part all together if you want no borders.
The "width:" part decides how large the table is horizontally. This is required. 500 is the default.
"align:" is the final element, it can be either "left", "center", or "right", or you can exclude the "align:" all together and it will align left by default.
To define a row, put a [TR] tag. To add a cell in a row, add a [TD] tag.
For example:
[TABLE="class: outer_border, width: 500, align: left"]
[TR]
[TD]Sora[/TD]
[TD]Is[/TD]
[/TR]
[TR]
[TD]Very[/TD]
[TD]Awesome[/TD]
[/TR]
[/table]
Yields:
Ask about what you don't understand.
Also, I'm loving the [hr] tags.