Ajax issue | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Ajax issue

is it possible to save a session on Ajax data file and insert it into table later finally ???

6th Apr 2018, 10:45 AM
Johnnie 🎩
Johnnie 🎩 - avatar
7 Answers
+ 2
Sessions are stored on the server. Is there any specific problem? Can you describe it?
6th Apr 2018, 10:01 PM
Matúš Semančík
Matúš Semančík - avatar
+ 2
You can use the cookies or JavaScript variables, where you can put input values from previous formsand at the end use ajax to make final post request. Or you can make post request after each form and on server store data in session and then insert to table. Which back-end language do you use?
7th Apr 2018, 3:36 PM
Matúš Semančík
Matúš Semančík - avatar
+ 2
Php has $_SESSION build in, so you can simply go for sessions way :)
7th Apr 2018, 3:58 PM
Matúš Semančík
Matúš Semančík - avatar
+ 2
Perfect ;)
7th Apr 2018, 4:12 PM
Matúš Semančík
Matúš Semančík - avatar
+ 1
thanks alot . . . . and the language I mentioned php on my post
7th Apr 2018, 3:41 PM
Johnnie 🎩
Johnnie 🎩 - avatar
0
I wanted to store multiple data from multiple forms
7th Apr 2018, 3:25 PM
Johnnie 🎩
Johnnie 🎩 - avatar
0
yea I did that already ;)
7th Apr 2018, 4:09 PM
Johnnie 🎩
Johnnie 🎩 - avatar