PHP循环描述

时间:2017-05-30 03:38:00

标签: php loops for-loop while-loop html-table

我想:

  • 如果数据在计数器1 - 10中,则类别为非常好。
  • 如果数据在计数器11-30中,则类别为好。
  • 如果数据在计数器中> 30然后该类别很差。

                              秩             名称             得分了             日期             类别              
    {{1}}

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
}