Hi,
Why in the world won't this work?
I know it's a very simple statement but I can't figure out how to make it work. When I print out the $area variable it is correct, so I know it is being passed.
Thanks,
Tim
Why in the world won't this work?
PHP Code:
if (($area != 281) || ($area != 713)) {
echo "area is not equal to 281 or 713. area is equal to $area.";
exit;
}
Thanks,
Tim
Comment