I've always wondered if this was possible, having never used it myself, I don't know.
This is roughly what I have in my code:
if (argument here) {
...
} else if (argument here) {
if (!$submit) {
... form here...
} else {
... validate stuff ...
passontoelse();
}
} else {
... perform brilliant stuff ...
}
Now that I showed you that, is it possible? In my else if, it says "passontoelse();", what I want to know is whether or not an if or else if can push the user on to an else if it's done validating.
Any help is appreciated.