if ((($value1 != null) || ($value1 != "")) && $value2 != "" && $value1
!= $value2) { ret false }
if i omit the [value2 != ""] i would still get the same result, right?
because I check if value1 != "" and then I check if value1!=value2
i.e. :
if ((($value1 != null) || ($value1 != "")) && $value1 != value2) { ret
false }
regards, maxim.
!= $value2) { ret false }
if i omit the [value2 != ""] i would still get the same result, right?
because I check if value1 != "" and then I check if value1!=value2
i.e. :
if ((($value1 != null) || ($value1 != "")) && $value1 != value2) { ret
false }
regards, maxim.
Comment