Skip to content
Advertisement

Uploaded image is not returned to PHP

I am trying to make a form for editing a product but if I upload a image the image can not be found by my PHP code it throws this error:

Notice: Undefined index: image in C:xampphtdocspagesshopmanageradminproducteditor.php on line 10

Notice: Undefined index: image in C:xampphtdocspagesshopmanageradminproducteditor.php on line 11 Upload failed

This is my Code:

JavaScript

Advertisement

Answer

Your <form> needs to have the enctype='multipart/form-data' attribute.

See: What does enctype=’multipart/form-data’ mean?

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement