Mail form in Flash

Hey guys, I’m trying to send out flash variables using a GET method however, it’s not working as it should.

my button code looks like this:


on(release){
	getURL("http://www.myurl.com/new.php?subject=" + _root.subject + "&name=" + _root.name + "&phone=" + _root.phone + "&email=" + _root.email);
}

When I declare values on my actions layer, it comes out like this

http://www.myurl.com/new.php?subject=“Hello”&name=“Koopakilla”&phone=“0181155654”&email=“[email protected]

And my PhP code works just fine. However, when I try to do the same using an input text box it comes out like this:

&namee=<p align=left><font face=_sans size=13 color=#000000 letterSpacing=0.000000 kerning=1>b</font></p>

I’m pretty sure I’m doing something wrong there, but I just dont know what.

Can anybody help me? what am I doing wrong? :frowning: Thanks!

PS: There’s a flash document attached of my “experiment”. Help is really appreciated, thanks!