MyBB.de Forum
Table Tag Frage - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Plugin-Diskussionen (https://www.mybb.de/forum/forum-38.html)
+--- Thema: Table Tag Frage (/thread-1119.html)



Table Tag Frage - Jochen2003 - 15.02.2006

Ich habe schon gesucht, wie sieht die syntax aus für den Table tag????


RE: Table Tag Frage - Michael - 15.02.2006

Du findest Beispiele am Ende der beigefügten Readme-Datei.


RE: Table Tag Frage - krafdi - 15.02.2006

PHP-Code:
Non-Sortable Table Example:

[
table]
[
tr]
[
th]Header1[/th]
[
th]Header2[/th]
[/
tr]
[
tr]
[
td]Data1[/td]
[
td]Data2[/td]
[/
tr]
[/
table

PHP-Code:
Sortable Table Example:

[
table=sortable]
[
tr]
[
th]Header1[/th]
[
th]Header2[/th]
[/
tr]
[
tr]
[
td]Data1[/td]
[
td]Data2[/td]
[/
tr]
[
tr]
[
td]Data3[/td]
[
td]Data4[/td]
[/
tr]
[/
table