Subject: | What is a good score? 40? 50? Please... |
Summary: | Package rating comment |
Messages: | 2 |
Author: | Rowi Knoop |
Date: | 2010-08-06 13:50:34 |
Update: | 2010-09-13 14:03:16 |
|
|
|
Rowi Knoop rated this package as follows:
Utility: | Not sure |
Consistency: | Sufficient |
|
 Rowi Knoop - 2010-08-06 13:50:35
What is a good score? 40? 50? Please specify in class. Thanks.
 Goran Bogdanovic - 2010-09-13 14:03:16 - In reply to message 1 from Rowi Knoop
this is checked meter data
if($final < 20){
$strong = 'weak';
}elseif($final >= 20 && $final < 30){
$strong = 'medium';
}elseif($final >= 30 && $final <= 35){
$strong = 'strong';
}elseif($final > 35){
$strong = 'extra strong';
}
|