MyBB.de Forum

Normale Version: Table Tag Frage
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Ich habe schon gesucht, wie sieht die syntax aus für den Table tag????
Du findest Beispiele am Ende der beigefügten Readme-Datei.
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