我想:
如果数据在计数器中> 30然后该类别很差。
秩 名称 得分了 日期 类别{{1}}
答案 0 :(得分:0)
我认为你需要使用if语句或if else语句检查循环中的计数器值。
<?php
if($counter >= 30){
$category = 'Poor';
//your code here
}
if($counter >= 11){
$category = 'Good';
//your code here
}
if($counter < 11){
$category = 'Very good';
//your code here
}