I've always wondered what 'exit;' means... Anyone knows?! (Probably you do... 😃)
exit() halts execution of the script that is currently running. Processing after the line of code below never gets there:
Doblah(); exit(1); never gets here; nor here; nor here;
Kerry Kobashi Kobashi Computing