Why does this produce "This should not print! ???
if (strval ('007') == strval ('7') ) { print "This should not print!<br>"; }
I have an array which contains both 007 and 7 and I would like to mask out the 007 but not the 7. How can it be done?
You BASTARD!
You should use === for strong type comparison!
:-]
Thanks JFK!