チェンジセット 94: trunk/install/php/showlib.php
- コミット日時:
- 2010/02/28 22:28:26 (15 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
trunk/install/php/showlib.php
r83 r94 84 84 "; 85 85 86 $rs = m_query($con, $query, "DBクエリに失敗しました"); 87 88 $maxrows = pg_num_rows($rs); 89 90 if ($maxrows > 0 ){ 86 //$rs = m_query($con, $query, "DBクエリに失敗しました"); 87 $rs = sql_query($con, $query, "DBクエリに失敗しました"); 88 $rowdata = $rs->fetch(); 89 if ($rowdata) { 91 90 if(ereg("iPhone",$useragent)){ 92 91 print "<ul id=\"home\" title=\"録画ライブラリ表示\" selected=\"true\">"; … … 105 104 "; 106 105 } 107 for ($row = 0; $row < $maxrows; $row++) { 108 $rowdata = pg_fetch_row($rs, $row); 106 do { 109 107 $title = $rowdata[1]; 110 108 $counts = $rowdata[2]; … … 125 123 "; 126 124 } 127 }//for 125 } while ($rowdata = $rs->fetch()); 128 126 129 127 if(ereg("iPhone",$useragent)){ … … 160 158 "; 161 159 $rs = m_query($con, $query, "DBクエリに失敗しました"); 162 $rowdata = pg_fetch_row($rs, $row);160 $rowdata = $rs->fetch(); 163 161 //print" $fName./$rowdata[1]/$rowdata[2]/$rowdata[3]<BR>\n"; 164 162 $title = $rowdata[1];