- ベストアンサー
10行ごとに罫線を入れて書き出したいのですが
・ ・ $result=mysql_query($sql); $rows=mysql_num_rows($result); として得られた複数の結果を10行ごとに横の罫線"--------"を入れてブラウザに表示したいのですがどのようにコーディングすればよいですか?
- みんなの回答 (2)
- 専門家の回答
質問者が選んだベストアンサー
$count=0; $result=mysql_query($sql); while ($rows=mysql_num_rows($result)) { print $row['hoge']; if($count>9){ print "<hr>"; $count=0; } $count++; }
その他の回答 (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++; } ?>
質問者
お礼
回答有難うございました。
お礼
回答有難うございました。以下の形で解決できました。 $count=0; while ($row=mysql_fetch_array($result)) { print $row['hoge']; $count++; if($count>9){ print "<hr>"; $count=0; } }