in reply to Ensuring Each If Statement Is Evaluated
Just remove the "els" parts of the statements! eg. Instead of this
... if ( test1 ) { ... } elsif ( test2 ) { ... } elsif (test3) { ... } .... #etc
do this..
... if (test1) {...} if (test2) {...} if (test3) {...} ...
|
|---|