| | 68 | //タイトル取得 |
|---|
| | 69 | $query = " |
|---|
| | 70 | SELECT epgid,startdatetime,enddatetime,lengthmin, ontvchannel,epgtitle,epgdesc,epgcategory , |
|---|
| | 71 | stationname , stationrecch ,stationid |
|---|
| | 72 | FROM foltia_epg , foltia_station |
|---|
| | 73 | WHERE epgid = ? AND foltia_station.ontvcode = foltia_epg.ontvchannel |
|---|
| | 74 | "; |
|---|
| | 75 | $rs = sql_query($con, $query, "DBクエリに失敗しました",array($epgid)); |
|---|
| | 76 | $rowdata = $rs->fetch(); |
|---|
| | 77 | if (! $rowdata) { |
|---|
| | 78 | die_exit("登録番組がありません。もう一度EPGに戻り操作して下さい。<BR>"); |
|---|
| | 79 | }else{ |
|---|
| | 80 | $stationid = $rowdata[10]; |
|---|
| | 81 | $subtitle = $rowdata[5] . $rowdata[6]; |
|---|
| | 82 | $startdatetime = $rowdata[1]; |
|---|
| | 83 | $enddatetime = $rowdata[2]; |
|---|
| | 84 | $lengthmin = $rowdata[3]; |
|---|
| | 85 | } |
|---|
| | 86 | |
|---|
| | 87 | |
|---|
| | 88 | |
|---|
| 149 | | print "<table width=\"100%\" border=\"0\"> |
|---|
| 150 | | <tr><td>放送開始</td><td>$startdatetime</td></tr> |
|---|
| 151 | | <tr><td>放送終了</td><td>$enddatetime</td></tr> |
|---|
| 152 | | <tr><td>局コード</td><td>$stationid</td></tr> |
|---|
| 153 | | <tr><td>尺(分)</td><td>$lengthmin</td></tr> |
|---|
| 154 | | <tr><td>番組名</td><td>$subtitle</td></tr> |
|---|
| 155 | | |
|---|
| 156 | | </tbody> |
|---|
| 157 | | </table>"; |
|---|
| | 171 | print "<table width=\"100%\" border=\"0\">\n"; |
|---|
| | 172 | print "<tr><td>放送開始</td><td>".htmlspecialchars($startdatetime)."</td></tr>"; |
|---|
| | 173 | print "<tr><td>放送終了</td><td>".htmlspecialchars($enddatetime)."</td></tr>\n"; |
|---|
| | 174 | print "<tr><td>局コード</td><td>".htmlspecialchars($stationid)."</td></tr>\n"; |
|---|
| | 175 | print "<tr><td>尺(分)</td><td>".htmlspecialchars($lengthmin)."</td></tr>\n"; |
|---|
| | 176 | print "<tr><td>番組名</td><td>".htmlspecialchars($subtitle)."</td></tr>\n"; |
|---|
| | 177 | print "</tbody>\n</table>"; |
|---|