Hi,
You can verify whether it's GIF or SWF file by knowing the extention of the file
$file_ext=strtolower(str_replace(".","",strrchr($filename,"."));
With this you will get the extention of the file(lower case).
===========================================
Description of above functions:
strrchr($string) gives end part of the string starting with last "."
str_replace($find,$replace,$string)
replace the "." with empty("")
Now you check the value of $file_ext using IF condition isn't it?
Hope you got it