次のような変数があります。
$type1=10;
$type2=40;
$type3=70;
.
.
.
and more
しかし、この変数はフォームから取得するため安定していません。
また、変数が 1 つあります。
$total=30;
したい
if `$total` less than `$type1` =>show special message.
if `$total` between `$type1` & `$type2` =>show special message2.
if `$total` between `$type2` & `$type3` =>show special message3.
and more...