0
Have anyone give me code for forward data from one to another page of website?
I am beginner in programming. Please help me.
3 Answers
+ 2
To retrieve data from one to another page of website there are several solutions... among wich:
+ cookies
+ local storage (modern browsers / html5)
+ url get query string and/or hash (hack: not the original purpose)
+ window.name property (hack: not the original purpose, but the only variable content preserved on new page load)
+ server sided solutions (with ajax request for example)
0
Can you give me any code for sample?