我正在运行一个打勾计数器的循环。
基本上,它是
<counter>
<a php form>
计数器正在从数据库中提取对象。如果拉出 10 个或更多对象,我希望关闭表单。我不确定如何将计数器从“while”语句中拉出来?
<?php
$counter = 0;
//LOOPING CODE IS HERE
example: ---- 'while ( $var->this() ) : $var->that();'----------
// Add to counter
$counter = ++$counter;
// Cleanup after ourselves
endwhile;
?>
现在在endwhile;
我需要能够调用最后一个值$counter
并确定它是=或> 10之后?