Skip to content
Advertisement

How to Send Text and Image File Data at The Same Time to MySQL Database Without Refreshing The Page

I don’t know how to send text, checkbox, radio data and also image file at the same time using ajax jquery post (in order not to refresh the page).

Here are the codes I have.

index.php

JavaScript

save.php

JavaScript

index.js

JavaScript

Please help

Advertisement

Answer

You can simplify your save function – and send both form data and an image at the same time by using a FormData object:

JavaScript

Note you need a couple of other changes. The form needs an id attribute e.g.

JavaScript

You should change the name attributes of the hobbies to hobby[] i.e.

JavaScript

And you need to add

JavaScript

To your ajax object.

In your PHP code, you would need to assemble $hobby from the raw form values:

JavaScript

and you should include a check for $_POST['gender'] being set:

JavaScript

I needed to change the name of your function as save was causing conflicts. I renamed it to save_data. You may not find this is an issue.

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