Hi
I have to convert /rewrite several html-files to be able to work as BBCode for a phpBB3 Software.
We are not using the Forum by now, only the PHP Functions for mysql connects.
The Forum works in behind.
But the HTML-Files will only show Code instead of the expected Layout.
I understand that HTML Coding is replaced by BBCode in phpBB3
But I am not able to rewrite the HTML Files
And If I use a converter from the net I have the same result and probably too less code
This is the Main HTML File:
I have to convert /rewrite several html-files to be able to work as BBCode for a phpBB3 Software.
We are not using the Forum by now, only the PHP Functions for mysql connects.
The Forum works in behind.
But the HTML-Files will only show Code instead of the expected Layout.
I understand that HTML Coding is replaced by BBCode in phpBB3
But I am not able to rewrite the HTML Files
And If I use a converter from the net I have the same result and probably too less code
This is the Main HTML File:
HTML:
<span class="head">{T_LIGANAME} - Saison {T_SAISONNAME}<br /><br />
<a href="{L_PREV_DAY}"><img src="./images/prev.gif" alt="vorhergehender spieltag" /></a> {T_SPIELTAG} <a href="{L_NEXT_DAY}"><img src="./images/next.gif" alt="nächster spieltag" /></a></span>
<br /><br /><br />
<table class="tbl-scores" cellpadding="4">
<!-- BEGIN ansetzungen -->
<tr>
<td class="{ansetzungen.C_TEAM_A}">{ansetzungen.T_TEAM_A}</td>
<td class="{ansetzungen.C_SONST}">-</td>
<td class="{ansetzungen.C_TEAM_B}">{ansetzungen.T_TEAM_B}</td>
<td class="{ansetzungen.C_TORE}"><span class="{ansetzungen.C_SPAN_TORE_A}">{ansetzungen.T_TORE_A}</span> : <span class="{ansetzungen.C_SPAN_TORE_B}">{ansetzungen.T_TORE_B}</span></td>
<td class="{ansetzungen.C_QUOTE}">[ <span class="{ansetzungen.C_SPAN_QUOTE_A}">{ansetzungen.T_QUOTE_A}</span> - <span class="{ansetzungen.C_SPAN_QUOTE_B}">{ansetzungen.T_QUOTE_B}</span> ]</td>
<td class="{ansetzungen.C_SONST}"><a href="{ansetzungen.A_DETAIL}"><img src="./images/{ansetzungen.I_DETAIL}" alt="{ansetzungen.T_IMG_DETAIL_ALT}" onclick="opwin('{ansetzungen.A_DETAIL}'); return false;" /></a></td>
</tr>
<!-- END ansetzungen -->
</table>
<br /><br /><span class="tbl-headline">{T_TABELLENARTNAME}</span><br /><br />
<table class="tbl-standings" cellpadding="4">
<!-- BEGIN tabelle -->
<tr>
<td class="{tabelle.C_IMG}"><a href="{tabelle.A_VERLAUF}"><img src="./images/{tabelle.I_TREND}" alt="trend" onclick="opwinC('{tabelle.A_VERLAUF}'); return false;" /></a></td>
<td class="{tabelle.C_PLATZ}">{tabelle.T_PLATZ}</td>
<td class="{tabelle.C_TEAM}"><a href="{tabelle.A_KALENDER}" onclick="opwinB('{tabelle.A_KALENDER}'); return false;">{tabelle.T_TEAM}</a>{tabelle.T_MARKER}</td>
<td class="{tabelle.C_SPIELE}">{tabelle.T_SPIELE}</td>
<td class="{tabelle.C_SIEGE}">{tabelle.T_SIEGE}</td>
<td class="{tabelle.C_REMIS}">{tabelle.T_REMIS}</td>
<td class="{tabelle.C_NIEDERLAGEN}">{tabelle.T_NIEDERLAGEN}</td>
<td class="{tabelle.C_PUNKTE}">{tabelle.T_PUNKTE}</td>
<td class="{tabelle.C_DIFF}">{tabelle.T_DIFF}</td>
<td class="{tabelle.C_TORE}">{tabelle.T_TORE}</td>
<td class="{tabelle.C_SONST}">:</td>
<td class="{tabelle.C_GEGENTORE}">{tabelle.T_GEGENTORE}</td>
<td class="{tabelle.C_QUOTE}">{tabelle.T_QUOTE}</td>
<td class="{tabelle.C_SONST}">-</td>
<td class="{tabelle.C_GEGENQUOTE}">{tabelle.T_GEGENQUOTE}</td>
</tr>
<!-- END tabelle -->
</table>
<br />
{HINWEIS}
Thanks if anybody can help me out and our game will be able to continue ..
appi