Voila un petit script AS3
pour PHP ça me parrait bon
AS3
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| var loader:URLLoader = new URLLoader();
var req:URLRequest = new URLRequest("recupe.php");
var variables:URLVariables = new URLVariables();
loader.dataFormat = URLLoaderDataFormat.VARIABLES;
req.method = URLRequestMethod.POST;
information1.tabIndex = 0;
btnAjout.addEventListener(MouseEvent.CLICK, sendForm);
function sendForm(evt:MouseEvent):void {
if (modif_info1.text=="")
{
confirme.visible = true;
trace('erreur');
confirme.reponce.text = "Aucun texte dans le premier champ";
}
else
{
variables.TEXTEAENVOYER = information1.text;
req.data = variables;
loader.load(req);
loader.addEventListener(Event.COMPLETE, receiveLoad);
}
} |
coter PHP tu fait juste
$TEXTEAENVOYER = $_POST['TEXTEAENVOYER'];
Information1 c'est ton champ texte et TEXTAENVOYER est la variable que tu envoie a php voilou
Bonne journée
Partager