view channelSetSID.php @ 124:aa48eb5f1993

mod: ¥Á¥ã¥ó¥Í¥ë¥¹¥­¥Ã¥×JavaScript½¤Àµ
author epgrec@park.mda.or.jp <yoneda@recorder.localnet.mda.or.jp>
date Wed, 17 Mar 2010 01:34:26 +0900
parents ded62b253bca
children 49145003e6a3
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($_POST['sid']) && isset($_POST['channel_disc']) ) {
	
	try {
		$crec = new DBRecord( CHANNEL_TBL, "channel_disc", $_POST['channel_disc'] );
		$crec->sid = trim($_POST['sid']);
	}
	catch( Exception $e ) {
		// 無視
	}
}
?>