PDA

View Full Version : File Filtering


Cloudski
12-29-2002, 03:55 AM
I was wondering how you would filter the files types, (ie: .jpg/.gif/etc) so as to only allow certain types.

Thanks for any help in advance! :thumbsup:

Nightfire
12-29-2002, 08:23 AM
To check if it's an image, use
getimagesize($imagefile); If that returns as false, then the image uploaded wasn't a valid image file.

To check image extensions, use:
http://www.php.net/manual/en/function.image-type-to-mime-type.php

Cloudski
12-29-2002, 10:02 PM
Thanks. :)