in reply to Help with this statement
works out as follows: "If variable value equals 456 OR if 453 is non-zero ...". Of course, 453 will always be non-zero. :)if ($value == 456 || 453 )
What you probably want to say is
if ($value == 456 || $value == 453)
--t. alex
"Excellent. Release the hounds." -- Monty Burns.
|
---|