• ベストアンサー

10行ごとに罫線を入れて書き出したいのですが

  ・   ・ $result=mysql_query($sql); $rows=mysql_num_rows($result); として得られた複数の結果を10行ごとに横の罫線"--------"を入れてブラウザに表示したいのですがどのようにコーディングすればよいですか?

質問者が選んだベストアンサー

  • ベストアンサー
  • calltella
  • ベストアンサー率49% (317/635)
回答No.2

$count=0; $result=mysql_query($sql); while ($rows=mysql_num_rows($result)) { print $row['hoge']; if($count>9){ print "<hr>"; $count=0; } $count++; }

bobo_0827
質問者

お礼

回答有難うございました。以下の形で解決できました。 $count=0; while ($row=mysql_fetch_array($result)) { print $row['hoge']; $count++; if($count>9){ print "<hr>"; $count=0; } }

その他の回答 (1)

  • yambejp
  • ベストアンサー率51% (3827/7415)
回答No.1

カウンターをつけてみてはどうでしょうか? <? $count=0; for($i=0;$i<99;$i++){ if($count>9){ print "<hr>"; $count=0; } print "test<br>"; $count++; } ?>

bobo_0827
質問者

お礼

回答有難うございました。

関連するQ&A