I have a url string like this:
http://www.google.com/cse?cx=017840637368510444960:ny1lmky7r-0&client=google-csbe&output=xml_no_dtd&q=simon+g
I need to send this url from ajax to a php script as a single string variable.
I am having trouble though because it keeps getting split into several vars because of the vars in the ...
I have tried several different ways, but it seems that it never sends the empty array value to the server
_vars["myObject[array_list][]"] = null;
_vars["myObject[array_list][]"] = [];
It only seems to work if I provide a value (which I am trying to avoid). What I would like for it to do is send the url param: myObject[arra...
Hello,
I have a situation in my project where i need to make a redirection of the user to an url containing a parameter, (it is declared in the urls.py like:
url(r'^notamember/(?P<classname>\w+)/$',
notamember,
name='notamember'),)
How can i put that parameter in the return HttpR...