我有变量,例如:
$type1=10;
$type2=40;
$type3=70;
.
.
.
and more
但是这个变量并不稳定,因为我是从表单中获取它们的。
而且我还有一个变量:
$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...