view simpleReservation.php @ 73:cd64cf013095

make use of --sid option to reduce file size
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Sun, 14 Feb 2010 15:43:57 +0900
parents f5a9f0eb4858
children fce37385c8b4 cb7da56c4198
line wrap: on
line source

<?php
include_once('config.php');
include_once( INSTALL_PATH . "/DBRecord.class.php" );
include_once( INSTALL_PATH . "/Reservation.class.php" );
include_once( INSTALL_PATH . "/reclib.php" );

if( ! isset( $_GET['program_id'] ) ) exit("Error: 番組が指定されていません" );
$program_id = $_GET['program_id'];

try {
	Reservation::simple( $program_id );
}
catch( Exception $e ) {
	exit( "Error:". $e->getMessage() );
}
?>