Posts by B. Santana • 1 point
1 post
-
-1
votes1
answer40
viewsA: Problem uploading two files in PHP
You are trying to get the second photo of the variable $_FILES2, but this is not the variable that PHP stores data from uploads of files by POST. Utilize $_FILES["foto2"]; to obtain data from the…