建站学院(LieHuo.Net)CMS教程 在帝国cms的会员空间里有下面一段代码:
以下为引用的内容: <?php $sql=$empire->query("select * from {$dbtbpre}ecms_news where checked=1 order by id desc limit 12"); while($r=$empire->fetch($sql)) { $titleurl=sys_ReturnBqTitleLink($r);//链接 ?> <li><span class="mm">此处要从1递增数字</span><a href="<?=$titleurl?>" title="<?=$r[title]?>"><?=$r[title]?></a></li> <?php } ?> |
上面“此处要从1递增数字”这个要生成从1到12的数字
<?=$no.num?>这个没有任何数字显示。
<?=$bqno?>也是什么都不显示
<?=$bqno++?> 这个很奇怪,第一条记录前面没有数字,从第二条记录前面显示数字1往后递增,一直到11,
<?=$bqno+1?>更奇怪,全部12条记录前都显示数字1了,
想要从第一条记录,从1开始,一直递增到12,该怎么办呢?
正确答案: <?php $sql=$empire->query("select * from {$dbtbpre}ecms_news where checked=1 order by id desc limit 12"); $bqno=0; while($r=$empire->fetch($sql)) {$bqno++; $titleurl=sys_ReturnBqTitleLink($r);//链接 liehuo.net ?> <li><span class="mm"><?=$bqno?></span><a href="<?=$titleurl?>" title="<?=$r[title]?>"><?=$r[title]?></a></li> <?php } ?> |