Skip to content
Advertisement

Undefined index when trying to upload image ( with jquery validate and steps )

I’m using form steps with jquery steps and jquery validate. But when i try to upload image, it show “Undefined Index: picture”. When i try without both of jquery, it works.

register.php

JavaScript

test.js

JavaScript

base_url + “register/” + remarks.value will be route to saveregister and remarks.value as uri2

This is my adm.php

JavaScript

Advertisement

Answer

If you look at the jquery serialize() Documentation, it says the data from file select elements is not serialized. You could use FormData to send file input through ajax :

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