To be more specific is there a "goto" function, method, way, means of going to another part of the code in php 4.2?
The situation is as follows:
If a condition is met (and the condition is already if'd and elseif'd) we want to "goto" another part of the code, skipping a rather large chunk of it.
Can we designate a point to "goto" to? This would be in the same php file.
We've seen examples of "goto" end, for instance, however, when we try any variation of this, we keep getting all sorts of "unexpected string" errors.
Any ideas?
Thanks
😕