Is it possible to assign values of JavaScript variables to, say, PHP/Ruby/.net variables, without using cookies? What are the various ways to do so?
-
For e.g. $myvar = <javascript var>
-
Answer:
Two methods which come to mind are: Passing the variable values via the querystring. This would be the simplest method and fine for integers and short strings. To make this easier you could have a variable manager class on the client and server to add the values onto the querystring of requested urls and to parse them into variables on the server. This is the equivalent of adding client variables to a form as hidden fields and then submitting as a GET request. The drawback here is that you would have an upper limit on the amount of data which could be passed and use of the browser history (e.g. forward and backward buttons) could break your application. Create a server script to accept the variables. This could be called via AJAX from the client in order to keep the server informed of any value changes on the client. It allows for larger amounts of data to be passed, even serialised objects which could be decoded on the server. The service could also be used to pass values from the server to the client. The Drawback with this method is that a failure in the AJAX service could result in the client and server variables becoming out of sync.
Dave Kinsella at Quora Visit the source
Related Q & A:
- What are the various ways of savings to avoid income tax?Best solution by Yahoo! Answers
- What are some creative ways to say happy birthday online?Best solution by Yahoo! Answers
- What are some good ways to make money fast without a job?Best solution by Quora
- What is the Command to Minimize Windows and Maximize Windows without using the mouse?Best solution by Yahoo! Answers
- What is the Command to Minimize Windows Maximize Windows switch Windows close Windows without using the mouse?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.