I am new to PHP and was looking for a function that would stop the page processing if accessed, for example.
if ( 0 == 0 )
{
print "Display Message";
FUNCTION_THAT_ENDS_PAGE();
}
print "This text is not displayed because 0 = 0<br>";
print "and I used a function to stop processing this page";
Now I am looking for a real function FUNCTION_THAT_ENDS_PAGE();