チェンジセット 119: trunk/install/php/showlib.php
- コミット日時:
- 2010/10/01 18:37:21 (14 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
trunk/install/php/showlib.php
r94 r119 30 30 }//end if login 31 31 32 32 33 ?> 33 34 … … 56 57 57 58 <?php 59 60 /////////////////////////////////////////////////////////// 61 //1ページの表示レコード数 62 $lim = 300; 63 //クエリ取得 64 $p = getgetnumform(p); 65 //ページ取得の計算 66 list($st,$p,$p2) = number_page($p,$lim); 67 /////////////////////////////////////////////////////////// 68 58 69 $now = date("YmdHi"); 59 70 if(ereg("iPhone",$useragent)){ … … 74 85 "; 75 86 } 87 88 //////////////////////////////////////////////////////// 89 //レコードの総数取得 90 $query = " 91 SELECT 92 COUNT(DISTINCT tid) 93 FROM foltia_mp4files 94 "; 95 96 $rs = sql_query($con, $query, "DBクエリに失敗しました"); 97 $rowdata = $rs->fetch(); 98 $dtcnt = htmlspecialchars($rowdata[0]); 99 //echo $dtcnt; 100 // 101 if (! $rowdata) { 102 die_exit("番組データがありません<BR>"); 103 } 104 105 //////////////////////////////////////////////////////// 106 107 //Autopager 108 echo "<div id=contents class=autopagerize_page_element />"; 76 109 77 110 //新仕様 /* 2006/10/26 */ … … 82 115 GROUP BY foltia_mp4files.tid ,foltia_program.title 83 116 ORDER BY foltia_mp4files.tid DESC 84 "; 117 LIMIT $lim OFFSET $st 118 "; 119 85 120 86 121 //$rs = m_query($con, $query, "DBクエリに失敗しました"); 87 122 $rs = sql_query($con, $query, "DBクエリに失敗しました"); 88 123 $rowdata = $rs->fetch(); 124 89 125 if ($rowdata) { 90 126 if(ereg("iPhone",$useragent)){ 91 127 print "<ul id=\"home\" title=\"録画ライブラリ表示\" selected=\"true\">"; 92 128 }else{ 129 93 130 print " 94 131 <table BORDER=\"0\" CELLPADDING=\"0\" CELLSPACING=\"2\" WIDTH=\"100%\"> … … 103 140 <tbody> 104 141 "; 105 } 142 143 } 144 106 145 do { 107 146 $title = $rowdata[1]; … … 111 150 $counts = htmlspecialchars($counts); 112 151 152 113 153 if(ereg("iPhone",$useragent)){ 114 154 print "<li><a href=\"showlibc.php?tid=$tid\" target=\"_self\">$title</a></li>\n"; … … 131 171 </tbody> 132 172 </table> 173 174 "; 175 //////////////////////////////////////////////////////////////// 176 //Autopageing処理とページのリンクを表示 177 page_display("",$p,$p2,$lim,$dtcnt,""); 178 /////////////////////////////////////////////////////////////// 179 180 print " 133 181 </body> 134 182 </html> … … 140 188 141 189 }//end if 190 191 192 193 142 194 /* 143 195 //旧仕様