So a 3x3 would be the first image but adding another...
That would create a two by three table like this:
| Content 1 | Content 2 |
| Content 3 | Content 4 |
| Content 5 | Content 6 |
By adding another [ tr] [ /tr] section you are adding another row. To also add another column, add a [ td] [ /td] section in each row. It should look something like this:
[table]
[tr]
[td]Content 1[/td]
[td]Content 2[/td]
[td]Content 3[/td]
[/tr]
[tr]
[td]Content 4[/td]
[td]Content 5[/td]
[td]Content 6[/td]
[/tr]
[tr]
[td]Content 7[/td]
[td]Content 8[/td]
[td]Content 9[/td]
[/tr]
[/table]
and come out like this:
| Content 1 | Content 2 | Content 3 |
| Content 4 | Content 5 | Content 6 |
| Content 7 | Content 8 | Content 9 |
The [ tr] tags place the content inside them in horizontal rows. The [ td] tags place the content in vertical columns. To create a new row, you would add a set of [ tr] [ /tr] tags and place the content you want to be in that row in side the tags. To create a new column also place the content in [ td] [ /td] tags.
Do you mind making this more detailed because basic tabling people cam do but you should really check out the coding for my sig, its /zomg.
I'd like to add this to my useful links thread.
I know I helped code that frankensig

I'll try what I can shane. My original goal was to make the images and code, and work with someone else on writing the guide, but that fell through. As you can see above, my ability to explain things in written word is a little lacking. I just got frustrated and posted it. I have the code and images all the way up to your signature as an example

. I was going to cover uploading images and [ img][ /img] tags also. For me this guide is an exercise in gimp (which I have avoided learning. Should be learning all my native linux apps) and preparation for my guides on image manipulation with PHP. Assistance is very much appreciated.