Index: trunk/install/php/reserveepg.php
===================================================================
--- trunk/install/php/reserveepg.php (リビジョン 94)
+++ trunk/install/php/reserveepg.php (リビジョン 122)
@@ -201,4 +201,5 @@
+
Index: trunk/install/php/reserveepgcomp.php
===================================================================
--- trunk/install/php/reserveepgcomp.php (リビジョン 94)
+++ trunk/install/php/reserveepgcomp.php (リビジョン 122)
@@ -52,11 +52,12 @@
foltia:EPG予約:Error\n";
die_exit("登録番組がありません
");
@@ -65,4 +66,25 @@
\n";
$now = date("YmdHi");
+//タイトル取得
+ $query = "
+ SELECT epgid,startdatetime,enddatetime,lengthmin, ontvchannel,epgtitle,epgdesc,epgcategory ,
+ stationname , stationrecch ,stationid
+ FROM foltia_epg , foltia_station
+ WHERE epgid = ? AND foltia_station.ontvcode = foltia_epg.ontvchannel
+ ";
+ $rs = sql_query($con, $query, "DBクエリに失敗しました",array($epgid));
+$rowdata = $rs->fetch();
+if (! $rowdata) {
+ die_exit("登録番組がありません。もう一度EPGに戻り操作して下さい。
");
+}else{
+$stationid = $rowdata[10];
+$subtitle = $rowdata[5] . $rowdata[6];
+$startdatetime = $rowdata[1];
+$enddatetime = $rowdata[2];
+$lengthmin = $rowdata[3];
+}
+
+
+
// - DB登録作業
@@ -147,13 +169,11 @@
-print "
- 放送開始 | $startdatetime |
- 放送終了 | $enddatetime |
- 局コード | $stationid |
- 尺(分) | $lengthmin |
- 番組名 | $subtitle |
-
-
-
";
+print "\n";
+print "放送開始 | ".htmlspecialchars($startdatetime)." |
";
+print "放送終了 | ".htmlspecialchars($enddatetime)." |
\n";
+print "局コード | ".htmlspecialchars($stationid)." |
\n";
+print "尺(分) | ".htmlspecialchars($lengthmin)." |
\n";
+print "番組名 | ".htmlspecialchars($subtitle)." |
\n";
+print "\n
";
?>