Script flytter mit design
Hej EksperterJeg har et problem med den her kode flytter på mit design:
<?php /* START */
class templateParser
{
public $template = "default_template.htm";
public $output, $tags;
public function parse()
{
$this->output = file_get_contents($this->template);
foreach($this->tags AS $tag => $data)
{
$this->output = str_replace('{{'.$tag.'}}', utf8_encode(trim($data)), $this->output);
}
echo $this->output ;
}
}
/* END */ ?>
http://img144.imageshack.us/img144/1157/rykketdesignbe4.th.jpg
