Greeting I wanted to display the message "Uploading file please wait" when
the user clicks on the upload button. I tried to accomplish this with the
following...
The html:
<input type="submit" name="upload" value="Upload">
Then the php:
if($upload)
{
echo "File is being uploaded";
// The rest of the processing code
}
The problem is the message "File is being uploaded" displays after the
file has been uploaded. Is there a way to force the message to disply
before the file gets uploaded?
Any help would be greatly appreciated.
Thanks,
Mike