チェンジセット 119: trunk/install/php/showlibc.php
- コミット日時:
- 2010/10/01 18:37:21 (14 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
trunk/install/php/showlibc.php
r117 r119 63 63 die_exit("再生可能番組がありません<BR>"); 64 64 } 65 66 67 ////////////////////////////////////////////////////////// 68 //1ページの表示レコード数 69 $lim = 52; 70 //クエリ取得 71 $p = getgetnumform(p); 72 //ページ取得の計算 73 list($st,$p,$p2) = number_page($p,$lim); 74 /////////////////////////////////////////////////////////// 75 65 76 $now = date("YmdHi"); 66 77 … … 88 99 $serveruri = getserveruri(); 89 100 101 90 102 if(ereg("iPhone",$useragent)){ 91 103 print "<body onclick=\"console.log('Hello', event.target);\"> … … 107 119 print "$title 【<A HREF = \"./folcast.php?tid=$tid\">この番組のFolcast</A> [<a href=\"itpc://$serveruri/folcast.php?tid=$tid\">iTunesに登録</a>】 <br>\n"; 108 120 }else{ 109 110 121 print "<a href=\"http://cal.syoboi.jp/tid/" . 111 122 htmlspecialchars($tid) . "\" target=\"_blank\">$title</a> 【<A HREF = \"./folcast.php?tid=$tid\">この番組のFolcast</A> [<a href=\"itpc://$serveruri/folcast.php?tid=$tid\">iTunesに登録</a>]】 <br>\n"; … … 128 139 $serverfqdn = getserverfqdn(); 129 140 141 //Autopager 142 echo "<div id=contents class=autopagerize_page_element />"; 143 144 ///////////////////////////////////////////////////////// 145 //レコード総数取得 146 $query = " 147 SELECT 148 COUNT(*) AS cnt 149 FROM foltia_mp4files 150 LEFT JOIN foltia_subtitle 151 ON foltia_mp4files.mp4filename = foltia_subtitle.pspfilename 152 LEFT JOIN foltia_program 153 ON foltia_mp4files.tid = foltia_program.tid 154 WHERE foltia_mp4files.tid = ? 155 "; 156 157 $rs = sql_query($con, $query, "DBクエリに失敗しました",array($tid)); 158 $rowdata = $rs->fetch(); 159 $dtcnt = htmlspecialchars($rowdata[0]); 160 //echo $dtcnt; 161 // 162 if (! $rowdata) { 163 die_exit("番組データがありません。<BR>"); 164 }//endif 165 166 ////////////////////////////////////////////////////////// 167 //レコード表示 130 168 $query = " 131 169 SELECT … … 145 183 WHERE foltia_mp4files.tid = ? 146 184 ORDER BY \"startdatetime\" ASC 185 LIMIT $lim OFFSET $st 147 186 "; 148 187 … … 254 293 print "</tbody></table>\n"; 255 294 } 295 296 ////////////////////////////////////////////// 297 //クエリ代入 298 $query_st = $tid; 299 //Autopager処理とページのリンク表示 300 page_display($query_st,$p,$p2,$lim,$dtcnt,""); 301 ////////////////////////////////////////////// 256 302 ?> 257 303 </body>