I have a problem, I wonder if someone could help me, I need to pass a string that contains (&) via get. Example:
.com/index.php?nome=name=AA&BB&age=18&city=....
This way the name arrives from the other sides only AA
I have a problem, I wonder if someone could help me, I need to pass a string that contains (&) via get. Example:
.com/index.php?nome=name=AA&BB&age=18&city=....
This way the name arrives from the other sides only AA
You have to encode the parameter before sending it to the server:
var url = "normal url?" + encodeURIComponent("get params");