hello , i use these to compare the filetype of a jpeg or gif image being uploaded
some people on my website are saying they are trying to upload jpg's and it wont let them ... Is this a full list of jpg allow filetypes? is their anything else i could add b/c it's not allowing all jpgs to be uploaded
## Set Known Photo Types
$known_photo_types = array(
'image/pjpeg' => 'jpg',
'image/jpeg' => 'jpg',
'image/gif' => 'gif',
);
// GD Function List
$gd_function_suffix = array(
'image/pjpeg' => 'JPEG',
'image/jpeg' => 'JPEG',
'image/gif' => 'GIF',
);