25/03/2014, 14:19
|
| | | Fecha de Ingreso: noviembre-2002 Ubicación: En un pequeño, helado, obscuro reino... llamado Dinamarca.
Mensajes: 1.852
Antigüedad: 22 años Puntos: 1 | |
Respuesta: flash as3 con php Aqui tienes algo donde entretenerte un rato, hace justamente lo que estas buscando.
Si tus conocimientos de Json y PHP son algo avanzados lo entenderas inmediatamente y veras que en el fondo se bastante simple.:
Saludos
---------------------------------
// Create JSON Object to send to PHP
import flash.net.URLRequest;
import flash.net.URLLoader;
import com.serialization.json.JSON;
//var obj:Object = JSON.deserialize(string); // Use this to deserialize data coming back!
var people:Array = new Array();
var person:Object = new Object();
person.firstname = "Kobe";
person.lastname = "Bryant";
people.push(person);
var url:String = "http://localhost/getJSON.php";
var request:URLRequest = new URLRequest(url);
request.method = URLRequestMethod.POST;
var requestVars:URLVariables = new URLVariables();
requestVars.myObject = JSON.serialize(people);
request.data = requestVars;
var loader:URLLoader = new URLLoader();
loader.load(request);
/* PHP TO CATCH THE JSON
$object = JSON_decode($_POST['myObject']);
// Takes JSON data and writes to data.txt
$fp = fopen('data.txt', 'w');
fwrite($fp, $_POST['abc']);
fwrite($fp, $object[0]->firstname . " ");
fwrite($fp, $object[0]->lastname . chr(13) . chr(10));
fwrite($fp, $_POST['myObject']);
fclose($fp);
*/ |