view channelSetSID.php @ 118:db185340a981

utf8 collate try1
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Sun, 14 Mar 2010 20:16:04 +0900
parents 49145003e6a3
children
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 ) {
		// 無視
	}
}
?>