Hi,
I have a PHP4 page in which I am pulling data out of a database at the top of the page.
I have an if() statement that checks to see if the data pulled meets a condition. I have php code set to print out a message if the data does not meet the condition.
I want the PHP to stop processing right there if the condition is NOT. Currently, the remainder of the code below this IF statement is printed.
Is there a command to use in PHP to tell the processor to STOP processing from that point on?