OSDN Git Service

modified: epgwakealarm.php 省電力少し修正
[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 ?>