[PHP-users 635] Re: データ検索結果の分割表示画面について

Miki Yamaguchi php-users@php.gr.jp
Mon, 9 Jul 2001 09:11:06 +0900


山口−自己レス−です

お騒がせしました。
「検索結果を表示 」部分を次のようにすることで修正できました。
申し遅れましたが、スクリプトを公開してくださっているソフト工房様に御礼申し上
げます。
//------------------ 検索結果を表示 ------------------------

// 1頁分のデーターをDBから読取って表示
if ($numrow > $Plines) $numrow = $Plines;
for($i=0; $i < $numrow; ++$i){
        echo "名称:" . "<a href='" . pg_result( $execid, $i, 7 ) . "'>" .
pg_result( $execid, $i, 0 ) . "</a>\n" . "<br>";
        echo "地域:" . pg_result( $execid, $i, 1 ) . "  " . "<a href='" .
pg_result( $execid, $i, 3 ) . "'>" . pg_result( $execid, $i, 2 ) . "</a>\n"
. " " . "<a href='" . pg_result( $execid, $i, 5 ) . "'>" . pg_result(
$execid, $i, 4 ) . "</a>\n" . "<br>";
        echo "住所:" . pg_result( $execid, $i, 6 ) . "<br>";
        echo "紹介文:" . pg_result( $execid, $i, 8 ) . "<br>";
        echo "<hr>";
      }