in reply to Re: Posted Value "eq" not working
in thread Posted Value "eq" not working

perhaps you are expecting the string f+a+l+s+e where you should have 0 or ''

maybe something like this...

if(/(^[Ff]alse$|^0$|^''$|^'0'$)/  );

or

unless($get){print ...}