view channelSetSID.php @ 116:f268d7d10590

fix: ¥Þ¥ë¥Á¥Ð¥¤¥Èmb_str_replace¤ò¥Í¥Ã¥È¤«¤é¤¤¤¿¤À¤¤¤ÆÄɲÃ
author yoneda <epgrec@park.mda.or.jp>
date Sat, 13 Mar 2010 23:30:11 +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 ) {
		// 無視
	}
}
?>