예제 #1
0
파일: template_use.php 프로젝트: clearm/web
<?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();