<?
$template=new template("",'a');
$title="Title of my first templeted page!";
$body="Body of my page (little short!)";
$tail="Copyright Julien PACHET (lol!)";
$template->replace("CSS_FILE","");
$template->replace("TITLE",$title);
$template->replace("BODY",$body);
$template->replace("TAIL",$tail);
// display!
echo $template->get();
?>
|