hi. i have this mime-type array in my php upload script... but my mime type for photoshop files isn't working. what's wrong with this?
Code:
# -=-=-=- Allowed File Extensions: .TIF / .PSD / .JPG / .JPEG / .JPE / .PNG $mimetypes = array ( 'image/tiff', 'image/vnd.adobe.photoshop', 'image/jpeg', 'image/png', );
Comment