I have a question regarding the exit() function. I read the manual on this, but it didn't really answer my question. Suppose I have the following:
Script1.php:
require 'Script2.php';
blahblahblah();
echo 'junk';
And Script2.php:
function blahblahblah()
{
exit;
}
So basically my question is, when exit() gets called from within Script2.php, does it just stop the execution of Script2.php? Or does it also stop the execution of Script1.php? Thanks!