OSDN Git Service

mod: EPGの更新と同時に予約情報を更新するように変更、ログビューアの追加
[epgrec/epgrec.git] / logViewer.php
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 ?>