I need a fresh pair or two of eyes.
I have this condition set in a script:
$SubCallCount = 45;
$SubWorkOrders = 0;
echo $SubWorkOrders . ' !! ' . $SubCallCount . '<br>';
if ($SubCallCount > 0 && $SubWorkOrders > 0)
{
the 'if' satement returns 'false' if only one of the conditions is false. As is painfully obvious, $SubCallCount is greater than zero. I have two instances in my particular database where $SubCallCount > 0 && $SubWorkOrders = 0, and the 'if' condition returns 'false'
Am I nuts and imagining things?