|
Posted by "Chris Boget" on 07/19/05 19:46
> Chris Boget wrote:
> <snip>
> > echo "if( $originalNet != $calculatedNet ) = " . ( (int)$originalNet !==
> > (int)$calculatedNet ) . "<br>\n";
> </snip>
> Change this to echo out what you're comparing...
> echo "if( ". (int)$originalNet ." != ". (int)$calculatedNet ." ) = " . (
> (int)$originalNet !== (int)$calculatedNet ) . "<br>\n";
> That'll show what numbers is actually trying to match.
Ok, then that begs the following questions:
If I don't cast any of the values, why do they display as being identicle?
Additionally, why does every IF check fail in that case?
thnx,
Chris
Navigation:
[Reply to this message]
|