hello there ! 
Am working on my senior project , and i almost done but there is one issue (The last step I hope)
the problem is that I don’t know how to send a value (string) to an html or php page using (url) in js
I did use a code from the scripting manual but it gives me this error (unknown identifier “www”)
i don’t know if the script that i use is correct i just want some help to be able to send the string 
Is it possible that you missed out the line where you declare the www variable?
// Start a download of the given URL
var www : WWW = new WWW (url);
// Wait for download to complete
yield www;
If this doesn’t seem to be the problem then perhaps you can post the code you are using?
I solve the www problem , the main problem is that i don’t have a code that could send a value with the urls like this
hhtp://www.example.com?val1
hhtp://www.example.com?string1
if just could make a button that redirect me from my work to another web page , then surely I’ll be able to send any parameter with the link 
hope you understand what my problem is 
andeeee , fine, I’ve got the idea now, thanks for the help anyway
var foo = "foo";
Application.ExternalEval( "document.location='http://yoursite.com/script.php?string='" + foo + "';");
