Index: trunk/install/php/titlelist.php
===================================================================
--- trunk/install/php/titlelist.php (リビジョン 70)
+++ trunk/install/php/titlelist.php (リビジョン 94)
@@ -51,12 +51,10 @@
ORDER BY foltia_program.tid DESC
";
- $rs = m_query($con, $query, "DBクエリに失敗しました");
- $maxrows = pg_num_rows($rs);
-
- if ($maxrows == 0) {
+// $rs = m_query($con, $query, "DBクエリに失敗しました");
+$rs = sql_query($con, $query, "DBクエリに失敗しました");
+$rowdata = $rs->fetch();
+if (! $rowdata) {
die_exit("番組データがありません
");
-
}
-
?>
@@ -72,5 +70,5 @@
/* フィールド数 */
- $maxcols = pg_num_fields($rs);
+$maxcols = $rs->columnCount();
?>
mp4 | \n"; echo("\n"); - } + } while ($rowdata = $rs->fetch()); ?>