comparison logViewer.php @ 146:4afd353b4507

merged with upstream
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Tue, 23 Mar 2010 02:37:31 +0900
parents 481e789605e3
children
comparison
equal deleted inserted replaced
141:d1681f891462 146:4afd353b4507
1 <?php
2 include_once('config.php');
3 include_once( INSTALL_PATH . '/DBRecord.class.php' );
4 include_once( INSTALL_PATH . '/Smarty/Smarty.class.php' );
5
6
7 $arr = DBRecord::createRecords( LOG_TBL, " ORDER BY logtime DESC" );
8
9 $smarty = new Smarty();
10
11 $smarty->assign( "sitetitle" , "epgrec動作ログ" );
12 $smarty->assign( "logs", $arr );
13
14 $smarty->display( "logTable.html" );
15 ?>