in one of drop down options the value = "22". if that one isnt selected it should add 35 (numeric) to all the others .
Code: Select all
if($_POST['menu1'] != '22') {
$total + 35 ;
}but when i do it like the above it wont show up in my echo $total.
Can i not add numeric values to variables that way? It's giving really high and crazy numbers instead of nothing .