Does anyone know what this error can be caused in PHP? This is the switch and it gives an error in the line that will highlight with an arrow
switch(strtolower($_FILES['FileInput']['type']))
{
case 'audio/3ga': <---
case 'audio/3gpp':
case 'audio/3gpp2':
case 'video/quicktime': //when recording on iOS devices the mov container is used. It contains AAC sound.
case 'audio/mpeg'://in case of selecting an already existing recording
break;
default:
die('{"s":0,"e":"Unsupported file type '.$_FILES['FileInput']['type'].'"}');
}