Example:
if () {
}
if () {
}
else {
}
I would like else statement work for both if statements. In my example else statement works only for second if statement.
And I can't copy else to the first if statement, because it must not be executed before second if statement.
Anybody?
I can't use:
if () {
}
elseif () {
}
else {
}
Both if statements must not be executed...