template funktion som virker med loop
Har følgende function som parser mine tpl files.Hvordan gør jeg hvis jeg har noget fra min database som jeg gerne vil have skrevet ud flere gange uden at skulle blande html med php ?
Mvh Jonas
function parse($tpl_file)
{
// Make sure it's a valid file, and it exists
if (!is_file($tpl_file))
{
die('template::parse() - "' . $tpl_file . '" does not exist or is not a file.');
}
$tpl_content = file_get_contents($tpl_file);
foreach ($this->tpl_vars as $var => $content)
{
$tpl_content = str_replace('{' . $var . '}', $content, $tpl_content);
}
return $tpl_content;
}