« Back to the index
\core\WATemplate references example
{{title}}
[[]]
[[thecontent]]
{{content}}
[[]]
EOF;
$temp = new \core\WATemplate($template);
$data = array(
'title' => 'Blue Martini recipe',
'content' => '1 oz. Stoli Limonnaya Vodka
1 oz. Stoli Razberi Vodka
splash Sour Mix
dash Curacao
Garnish with lemon twist
'
);
$temp->metaElements($data, false, true);
print $temp->resolve();
?>
« Back to the index