Right now I have the following code:
if ($costOne <> $costTwo) {}
and I'd like to change this to
if ($costOne is not within the range of $costTwo - .0001 and $costTwo + .0001) {}
I've tried writing this a few different ways but I'm not doing something right.... can someone provide me the correct syntax to express this?