@npc
PHP-Code:
<?php
# Variablen. o.O
$index = array
(
    array(
'{title}''Möp'),
    array(
'{copyright}''Pöm'),
    array(
'{subcontent}''PömMöp')
);

# Austauschen der Platzhalter mit Variablen
$template->replace('{content}'$template->tpls); #  Einbinden des Zweiten Templates

foreach ($index as $replace)
{
    
$template->replace($replace[0], $replace[1]);
}
?>
So?