Hello.
I'm working on something right now in Flash, and it requires it to communicate with a PHP script, which then replies to the Flash program.
In Flash, I will use the command: loadVariablesNum ("Login.php?login="+ Login +"&pass"+ Password, "0");
In PHP, I will have it reply with:
Print "Login=valid&Information=$info";
If $info includes characters such as & or = this will mess up my script, because it will think anything after & is a new variable, and = is the value.
How can I process $info in PHP so that I can send & and = signs, and how do I later process 'info' in Flash to change them back?
Thanks