Unity not passing space character to WWW url.

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” )

http://unity3d.com/support/documentation/ScriptReference/WWW.EscapeURL.html

The answer is quite simple: space characters are not allowed in urls…

You’ve heared about escaping special characters?