试图获取一个代码来显示我的帖子的类别,但我在显示每个类别的帖子数量时遇到了问题。
好吧,您在查看代码时明白了我的意思,现在每个类别都列出了类别总数...
开始了:
<?php
$listresult = mysql_query("SELECT distinct category FROM test_blog")
or die(mysql_error());
$totalpostspercategory = mysql_num_rows($listresult);
echo "<ul>";
while($row = mysql_fetch_array( $listresult )) {
if (strlen($row['category']) > 45) {
$row['category'] = substr($row['category'],0,45) . " ...";
}
echo "<li><a href='index.php?category=" . $row['id'] . "'>" . $row['category'] ."</a> (" . $totalpostspercategory . ")</li>";
}
echo "</ul>";
?>