comparison logViewer.php @ 142:481e789605e3

mod: EPG¤Î¹¹¿·¤ÈƱ»þ¤ËͽÌó¾ðÊó¤ò¹¹¿·¤¹¤ë¤è¤¦¤ËÊѹ¹¡¢¥í¥°¥Ó¥å¡¼¥¢¤ÎÄɲÃ
author epgrec@park.mda.or.jp <yoneda@recorder.localnet.mda.or.jp>
date Sun, 21 Mar 2010 16:42:58 +0900
parents
children
comparison
equal deleted inserted replaced
136:6754b6aa50cf 142:481e789605e3
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 ?>