OK, so I simply want to 'break' out of the current PHP, BUT continue to load "The Page".
'Break' only works witihn loops, 'exit', stops "The Page" (below code, in HTML) from loading.
<?php
if($REQUEST_METHOD == 'POST'){
if ($email="") {$myFormError="<b><font size='5' color='#FF0000'><u>Error:</u><br>Please complete fields</font></b><br><br>"; exit;} else { }
// Then if all is OK do some actions...
}
?>
<!-- "The Page" -->
<html>
<head>
<title><?php echo $myFormError; ?><title>
</head>
<body></body>
</html>