Ok, I have a php file that calls a second php file and in that second php script, I check the upload size of a user upload file. If it is too big, I echo a message that describes the limits of uploads and also what file types are allowed. The problem is, as soon as I display the message, the scripts then jumps back to the original page that called the script and the message is not up long enough for the user to read it. I have tried exit; and without exit after the "if" but no difference.
Question, how to I get the script to stop after displaying the message?
Basil