Example #1
0
<?php

require_once '../web/template.class.php';
$template = new Template();
$template->first();
$fileNmArray = array('forTempalte1.css');
$template->css('', $fileNmArray);
$template->headEnd();
$template->bodyStart();
echo "test";
$template->bodyEnd();
$template->htmlEnd();