Hi,
Is there a way to check a form <input type = 'file'>'s content in an if statement? Normally something like
if (isset($_POST['my_input_name'])){};
works or
if (!empty($_POST['my_input_name'])){};
but neither of these work. I've tried accessing the input data by $_FILES['input_name']['name'] as well. This also didn't work. Thanks.