The task – to implement insertion of tables into the forum in phpBB. The easiest, safest and most convenient way – to use bbcode. To do this, go to:
admin panel -> posts -> BBCodes and add there:
tag table:
[table]{TEXT}[/table]
<table border="1">{TEXT}</table>
tag tr (new line):
[tr]{TEXT}[/tr]
<tr>{TEXT}</tr>
tag td (new column):
[td]{TEXT}[/td]
<td style="padding:0 10px 0 10px;">{TEXT}</td>
That’s it, you can make tables now 😀