Hello. If anyone could help me with this, they would truly be the bomb.
I have a form that submits, then validates, then, if everything checks okay, I redirect to another php page. The form takes some time to validate, and instead of having the user stare at the form for a long time, I want to have a animated gif displaying "processing form".
In order for the redirection to the next page, I used the header("Location: blahblah"); But the in order for the header to be used there cannot be any html outputted before this header. And in my case the animated gif is considered html outputted. I also tried setting the Content-Type to image/gif. But this does not work either. Rather, it displays the animated gif and that's all it does.
Please help. I'm stumped.
-m