Mercurial > epgrec.yaz
annotate setChannelInfo.php @ 143:42f6eb738567
mod: 積み残しを修正
author | epgrec@park.mda.or.jp <yoneda@recorder.localnet.mda.or.jp> |
---|---|
date | Sun, 21 Mar 2010 21:54:03 +0900 |
parents | 134fced37df5 |
children |
rev | line source |
---|---|
127 | 1 <?php |
2 include_once('config.php'); | |
3 include_once( INSTALL_PATH . "/DBRecord.class.php" ); | |
4 include_once( INSTALL_PATH . "/Settings.class.php" ); | |
5 | |
6 | |
7 if( isset($_POST['sid']) && isset($_POST['channel_disc']) && isset($_POST['skip']) ) { | |
8 | |
9 try { | |
10 $crec = new DBRecord( CHANNEL_TBL, "channel_disc", $_POST['channel_disc'] ); | |
11 $crec->sid = trim($_POST['sid']); | |
12 $crec->skip = (int)(trim($_POST['skip'])); | |
13 } | |
14 catch( Exception $e ) { | |
15 exit("Error: c潟掩贋医け" ); | |
16 } | |
17 } | |
126 | 18 ?> |