I have a problem when I try to access any URL like this by script:
mysite = WWW(“http://localhost/mylist.php?team="+"No team”);
The “No team” string has a space character, and I get no output from the URL in Unity. But, if I go to the browser and type the same URL: “http://localhost/mylist.php?team=No team”, the URL works all right, and I get the results.
It looks like Unity isn’t passing the space character to the URL, how can I solve this problem?
( this URL lists all users where team == “No team” )