Hi,
I have a file foo.php that includes a file bar.php. foo.php includes the
values that bar.php modifies. If bar.php doesn't like the values foo.php
creates, it will exit(). Since I am looping though an array of values in
foo.php I don't want exit() to kill the loop, but instead I want it just to
kill any code in bar.php and let foo.php continue.
Anyone know a how I can do this? Do I need to use another function other
than exit()?
TIA