AlbertAguirre
Programmer
Why does this fail???
$setType="raise";
if ($setType=="lower"){
print "in if \n";
}else{
print "in else \n";
}
The output is consitantly:
in if
Why???
$setType="raise";
if ($setType=="lower"){
print "in if \n";
}else{
print "in else \n";
}
The output is consitantly:
in if
Why???