// Author: Robert Lie (Mobilefish.com) // More information, see: https://www.mobilefish.com/developer/flash/flash_quickguide_actionscript_3_examples.html var url:String = "https://www.mobilefish.com/php/tests/actionscript/actionscript_response_post.php"; var variables:URLVariables = new URLVariables(); variables.fname = "Robert"; variables.lname = "Lie"; variables.points = 90; var urlRequest:URLRequest = new URLRequest(url); urlRequest.method = URLRequestMethod.POST; urlRequest.data = variables; sendToURL(urlRequest);