Here is the code I have in my script..
PHP Code:
else if (($picture_type != "image/pjpeg") && ($picture_type != "image/jpeg") && ($picture_type != "image/gif"))
now on my personal sites I don't allow gif's for my own personal reasons..
but maybe instead of being && .. && make it OR.. like this
PHP Code:
else if (($picture_type != "image/pjpeg") or ($picture_type != "image/jpeg") or ($picture_type != "image/gif"))
and see if that fixes it or helps it.