Mercurial > epgrec.yaz
view channelInfo.php @ 94:12ed8ad837fc
fix: ¤µ¤é¤Ė½¤Ąµ
author | epgrec@park.mda.or.jp <yoneda@recorder.localnet.mda.or.jp> |
---|---|
date | Tue, 02 Mar 2010 23:35:28 +0900 |
parents | ded62b253bca |
children | cb04c9ca1cb0 |
line wrap: on
line source
<?php include_once('config.php'); include_once( INSTALL_PATH . "/DBRecord.class.php" ); include_once( INSTALL_PATH . "/Settings.class.php" ); if( isset($_GET['channel_disc']) ) { try { $crec = new DBRecord( CHANNEL_TBL, "channel_disc", $_GET['channel_disc'] ); echo '<div class="prg_title">'; echo $crec->name . "</div>"; // ēØ®å„ echo '<div class="prg_channel"><span class="labelLeft">ēØ®å„ļ¼</span><span class="bold">'; echo $crec->type; echo '</span></div>'; // ćć£ć³ćć« echo '<div class="prg_channel"><span class="labelLeft">ē©ēćć£ć³ćć«ļ¼</span><span class="bold">'; echo $crec->channel; echo '</span></div>'; // ćć©ć¼ć echo '<form method="post" action="channelSetSID.php">'; echo '<div class="prg_channel"><span class="labelLeft">ćµć¼ćć¹IDļ¼</span>'; echo '<span><input type="text" name="n_sid" size="20" id="id_sid" value="'. $crec->sid .'" /></span>'; echo '<input type="hidden" name="n_channel_disc" id="id_disc" value="'. $crec->channel_disc .'" />'; echo '</div>'; echo '</form>'; } catch( Exception $e ) { echo "error:ćć£ć³ćć«ę å ±ć®åå¾ć«å¤±ę"; } } ?>