JACE Trinidad - 2012-02-07 23:55:10
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"))
&& ($_FILES["file"]["size"] > 0))
{
etc...
etc...
etc...
}
else
{
echo "Invalid file";
}
?>