guten morgen zusammen,
im folgenden template wird alles, was innerhalb der php-klammern steht verschluckt. hat jemand eine idee, woran das liegen könnte?
--- es wird nur $umsSystem gekillt, alles andere bleibt da ---
wäre echt für jeden tipp dankbar!
gruss
b.
template:
ausgabeseite:
im folgenden template wird alles, was innerhalb der php-klammern steht verschluckt. hat jemand eine idee, woran das liegen könnte?
--- es wird nur $umsSystem gekillt, alles andere bleibt da ---
wäre echt für jeden tipp dankbar!
gruss
b.
template:
PHP-Code:
<table width="600" border="0" cellspacing="0" cellpadding="1" height="50">
<tr>
<td width="80">$ArtNr</td>
<td width="200">$Titel $TopTip</td>
<td width="162">$Serie</td>
<?if ($umsSystem->level > 3){ ?>
<td bgcolor="#CCCC99" width="40">$PreisDVD</td>
<td bgcolor="#CCCC99" width="40">$PreisVHS</td>
<? }else{}?>
<td><a href="$ShowLink" target="_parent">ansehen</a></td>
</tr>
</table>
PHP-Code:
<table width="600" border="0" cellspacing="0" cellpadding="1" height="50">
<tr>
<td width="80">VHS-0245</td>
<td width="200">Testeintrag(TopTip) </td>
<td width="162">Genre: Action</td>
<?if ( > 3){ ?>
<td bgcolor="#CCCC99" width="40">35</td>
<td bgcolor="#CCCC99" width="40">25</td>
<? }else{}?>
<td><a href="xxx" target="_parent">ansehen</a></td>
</tr>
</table>
Kommentar