I am trying to have a PHP script validate a file type being uploaded, it works for others but not Quicktime .mov files.
What is the correct MIME type for Quicktime .mov files.
<?php
if ((($_FILES["file"]["type"] == "video/mpeg")
|| ($_FILES["file"]["type"] == "video/mpeg4")
|| ($_FILES["file"]["type"] == "video/mp4")
|| ($_FILES["file"]["type"] == "video/x-quicktime")
|| ($_FILES["file"]["type"] == "video/quicktime"))