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 @@ columnCount(); ?> @@ -86,8 +84,7 @@ \n"); - /* pg_fetch_row で一行取り出す */ - $rowdata = pg_fetch_row($rs, $row); + //TID echo("\n"; echo("\n"); - } + } while ($rowdata = $rs->fetch()); ?>
mp4