Can someone remind me how to use the function which works like a conditional statement.
I think it is something like:
3 < 4 : $something ? $something
Sorry for the vagueness :queasy:
$result = (3<4)?$something1:$something2;
Incidentally, that is a conditional statement (better yet, ?: is the "conditional operator"), not a function.