上記のような出力を作成する必要がありますが、数字を追加する方法は < ol > でできますが、必要なものではありません。 < ol > タグは別の順序を与えてくれます。 ?
1. Site.com 6. Site.com
2. Site.com 7. Site.com
3. Site.com 8. Site.com
4. Site.com 9. Site.com
5. Site.com 10. Site.com
ここにphpコードがあります
<?
$list = $my_db->fetch("SELECT " . MY_PREFIX . "list.id, name,address, in_hits, out_hits FROM " . MY_PREFIX . "list LEFT JOIN " . MY_PREFIX . "sites ON " . MY_PREFIX . "list.id=" . MY_PREFIX . "sites.id WHERE status >0 AND status <3 ORDER BY in_hits DESC LIMIT 9");
$count = 1;
echo "<ul>";
foreach($list as $site) {;?>
<li><a href="<?php echo "/out.php?url=" . $site["address"];?>" target="_blank" rel="nofollow" title="<?php echo htmlentities(stripslashes($site["name"]));?>"><?php echo htmlentities(stripslashes($site["name"]));?></a></li>
<?
if ($count == 5) {echo "</ul><ul>";}
$count++;
}
echo "</ul>";
?>