I can't figure out what does return intaval(0).
I've this code in a function:
$theValue = ($theValue != "" ? intval($theValu e) : NULL);
when I do test this
if $theValue = = NULL then
fails if the value passed is '0' (an edit type on a form).
what's wrong
Bob
I've this code in a function:
$theValue = ($theValue != "" ? intval($theValu e) : NULL);
when I do test this
if $theValue = = NULL then
fails if the value passed is '0' (an edit type on a form).
what's wrong
Bob
Comment