I was reading through the documentation at php.net link and came along the following line:
$_FILES['userfile']['type']
The mime type of the file, if the browser provided this information. An example would be "image/gif". This mime type is however NOT checked on the PHP side and therefore don't take its value for granted.
So how would one go about verifying that the file is of a proper mime type to prevent users from uploading potentially harmful files to the server; or otherwise causing bugs in code executed server side(since I might attempt to use a jpeg-only function on a file that isn't really a jpeg image)?
thanks in advance
