Hi
I encountered a problem in my if,elseif and else statement.
I have this code:
$HDMF = $_POST['HDMF'];
if($TotEarn <= 1500){
$HMDF = round(($TotEarn * 0.01), 2);
}
elseif ($TotEarn >= 1501) {
$HDMF = round(($TotEarn * 0.02), 2);
}
else {
$HDMF = (0);
}
$smarty->assign('HDMF', $HDMF);
I have $TotEarn = 893.5 so that my $HDMF will be 0 right?
But it become blank or empty.
What's wrong in my condition.
Thank you