I've got script with several exit; statements in it...
I want one of them to exit the script and continue to plug in a bunch of html at the bottom of the script. Is there a way to just exit the PHP script entirely and have it jump down to the HTML at the bottom?
Here's example.
<html here>
blah blah
<?
script...
exit;
stuff;
exit; --> want this one to jump out of php entirely complete html
stuff;
exit;
?>
<more html>
... blah blah blah