Skip to content Skip to sidebar Skip to footer

Image Upload Ajax Don't Work

I am trying to do an image file upload with ajax without refreshing the page but the file won't be moved to the specified folder i did very basic file upload php code to avoid erro

Solution 1:

You need to change the request header to make this work.

ajax.setRequestHeader("Content-type", "multipart/form-data");

Post a Comment for "Image Upload Ajax Don't Work"