I have a site where people can upload jpeg or png images. it works fine with pc's but when a mac user tries to upload images, they fail.
I think it has to do with my code specifying what filetypes to allow for upload.
I think I need to add mac definitions to this statement which would be easy to do if i had a mac to upload with - then i could just capture the file type by echoing $fupload_type
if (($fupload_type == "image/pjpeg")or($fupload_type == "image/x-png"))
Does anyone know what the mac filetype definitions would be for jpeg and pngs? or can you point me to some documentation that will tell me what they will be ?
Thanks in advance for help on this!