MyBB Community Forums

Full Version: adding tables into posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi guys i want to add a table into Mycode so that members can add tables into posts but i dont understand the concept of mycode yet and do not know what code to add or anything.

could some one help me out here please.

thanks for the help in advance guys.
And have you looked at this?? http://community.mybboard.net/thread-46050.html

Basically you'll need something like this...

Regular expression: \[table\]
Replacement: <table>

Regular expression: \[/table\]
Replacement: </table>

Regular expression: \[tr\]
Replacement: <tr>

Regular expression: \[/tr\]
Replacement: </tr>

Regular expression: \[td\]
Replacement: <td>

Regular expression: \[/td\]
Replacement: </td>


Etc etc...