Ciao!
questo è l'esempio di Flep:
Code:
var variables:URLVariables=new URLVariables();
variables.nome='mioNome';
variables.email='mail@mail.com';
variables.commento='ciao ciao';
var richiesta:URLRequest=new URLRequest();
richiesta.url='http://www..........com/script.asp';
richiesta.method=URLRequestMethod.POST;
richiesta.data=variables;
var loader:URLLoader=new URLLoader();
loader.dataFormat=URLLoaderDataFormat.VARIABLES;
addListeners(loader);
try
{
loader.load(richiesta);
}
catch (error:Error)
{
trace('Unable to load requested document.');
}
trovi un tutorial qui:
Flash CS3 e PHP