チェンジセット 70: trunk/install/php/reserveepgcomp.php
- コミット日時:
- 2008/01/24 18:27:18 (17 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
trunk/install/php/reserveepgcomp.php
r1 r70 19 19 20 20 */ 21 22 include("./foltialib.php"); 23 $con = m_connect(); 24 25 if ($useenvironmentpolicy == 1){ 26 if (!isset($_SERVER['PHP_AUTH_USER'])) { 27 header("WWW-Authenticate: Basic realm=\"foltia\""); 28 header("HTTP/1.0 401 Unauthorized"); 29 redirectlogin(); 30 exit; 31 } else { 32 login($con,$_SERVER['PHP_AUTH_USER'],$_SERVER['PHP_AUTH_PW']); 33 } 34 }//end if login 35 36 21 37 ?> 22 38 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> … … 29 45 30 46 <?php 31 include("./foltialib.php");32 47 33 48 printhtmlpageheader(); … … 49 64 print " <title>foltia:EPG予約:完了</title> 50 65 </head>\n"; 51 $con = m_connect();52 66 $now = date("YmdHi"); 53 67 // - DB登録作業 … … 81 95 //INSERT 82 96 if ($demomode){ 97 print "下記予約を完了いたしました。<br>"; 83 98 }else{ 99 $userclass = getuserclass($con); 100 if ( $userclass <= 2){ 101 /* 102 pid 103 tid 104 stationid 105 countno 106 subtitle 107 startdatetime 108 enddatetime 109 startoffset 110 lengthmin 111 m2pfilename 112 pspfilename 113 epgaddedby 84 114 85 $query = " 86 insert into foltia_subtitle 115 */ 116 117 $memberid = getmymemberid($con); 118 $query = " 119 insert into foltia_subtitle (pid ,tid ,stationid , countno ,subtitle , 120 startdatetime ,enddatetime ,startoffset , lengthmin , epgaddedby ) 87 121 values ( '$insertpid','0','$stationid', 88 '$nextcno','$subtitle','$startdatetime','$enddatetime','0' ,'$lengthmin' )";122 '$nextcno','$subtitle','$startdatetime','$enddatetime','0' ,'$lengthmin' , '$memberid')"; 89 123 90 124 $rs = m_query($con, $query, "DBクエリに失敗しました"); 91 125 92 //addatq.pl93 //キュー入れプログラムをキック94 //引数 TID チャンネルID95 //echo("$toolpath/perl/addatq.pl $tid $station");126 //addatq.pl 127 //キュー入れプログラムをキック 128 //引数 TID チャンネルID 129 //echo("$toolpath/perl/addatq.pl $tid $station"); 96 130 97 131 $oserr = system("$toolpath/perl/addatq.pl 0 0"); 98 132 print "下記予約を完了いたしました。<br>"; 133 }else{ 134 print "EPG予約を行う権限がありません。"; 135 }// end if $userclass <= 2 99 136 }//end if demomode 100 137 101 print "下記予約を完了いたしました。<br>"; 138 102 139 103 140 }else{