Cannot grab Image file using fetch in PHP

one text

Solution:

I figured it out. It seems that when the form was submitted, the file was being placed as part of the $_POST array and was being converted to just a string. When done correctly, none of the file information should be shown in the $_POST array, only the $_FILE array.

Source