ultra-tester
Grünschnabel
Hallo,
habe heute versucht in meinem template mit
das hat leider nicht geklappt.
wenn mir einer bei meiner tpl class helfen könnte währe ich sehr dankbar.
hier meine tpl class
das ist mein tpl
und da soll dann noch das von oben mit rein aber er zeigt nur das
was mache ich falsch?
habe heute versucht in meinem template mit
PHP:
<?php if($new >= 7) {
echo "./images/new.gif";
} else {
echo "";
}
?>
das hat leider nicht geklappt.
wenn mir einer bei meiner tpl class helfen könnte währe ich sehr dankbar.
hier meine tpl class
PHP:
class tpl {
function tpl($templatefolder, $end) {
$this->templatefolder = $templatefolder;
$this->end = $end;
}
function get($templatename) {
$this->templatename = $templatename;
if(file_exists($this->templatefolder."/$templatename.tpl"))$this->template = implode("", file($this->templatefolder."/".$this->templatename.".".$this->end));
else echo "<font color=\"#FF0000\"><b> das $templatename ist nicht vorhanden </b></font><br>";
$this->template = str_replace('"', "###", $this->template);
return $this->template;
}
function output($output) {
$this->output = $output;
$this->output = str_replace("###", '"', $this->output);
echo $this->output;
}
}
Code:
<tr class="tdsb">
<td>$news</td>
</tr>
Code:
= "7") { echo "./images/new.gif"; } else { echo ""; } ?>