Example #1
0
<?php

require_once '../web/template.class.php';
require_once '../_lib/page.class.php';
$page = new Page();
$page->total_row = 1234;
//100개의 row수라고 가정
$page->url = "/_lib/page.class.php";
$page->c_page = 15;
//$_GET['c_page'];
$template = new Template();
$template->first();
$fileNmArray = array('forTempalte1.css');
$template->css('', $fileNmArray);
$template->headEnd();
$template->bodyStart();
echo $page->page_view();
$template->bodyEnd();
$template->htmlEnd();