Hello, I'm new to using Ajax but pretty good with Javascript, but am stuck on something I writing and need some help.
I am passing a XMLHttp request via post and passing some parameters to it. The code is working fine and dandy, and I am using a name/value pair string to pass the parameters as such:
Code:
params = "name="+ value+ '&r=' + Math.random();
My problem is this: one of the values I am passing is a URL, which may contain its own query string attached to it. (Imagine a bookmarking type script) If I pass it along as url=url&myotherdata=data... the name/value pairs of the get mixed up when I'm reading it later on my php script.
Any suggestions?