loadTemplatefile("football.tpl", true, true); $template->setCurrentBlock("FOOTBALL"); $template->setVariable("OPPONENT", "Michigan"); $template->setVariable("HOME-SCORE", "42"); $template->setVariable("OPPONENT-SCORE", "39"); $template->parseCurrentBlock(); $template->setCurrentBlock("FOOTBALL"); $template->setVariable("OPPONENT", "Texas"); $template->setVariable("HOME-SCORE", "24"); $template->setVariable("OPPONENT-SCORE", "7"); $template->parseCurrentBlock(); $template->show(); ?>