+ 1
Ajax issue
is it possible to save a session on Ajax data file and insert it into table later finally ???
7 Respostas
+ 2
Sessions are stored on the server. Is there any specific problem? Can you describe it?
+ 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?
+ 2
Php has $_SESSION build in, so you can simply go for sessions way :)
+ 2
Perfect ;)
+ 1
thanks alot . . . . and the language I mentioned php on my post
0
I wanted to store multiple data from multiple forms
0
yea I did that already ;)