Quisiera saber poruqe cuando tengo el codigo de php para recibir no envia las varibles, pero en flash si las recibe....
<?
$login=$_GET["login"];
echo "AQUILOG:" . $login;
$pass= "PASS" . $_GET["pass"];
echo $pass;
?>
flash
on (press) {
var c = new LoadVars();
var d = new LoadVars();
c.login = log.pass
c.pass = pass.text;
content.htmlText = true;
content.htmlText = "" ;
content.htmlText = "returned from php: \n\n";
d.onLoad = function(exito:Boolean) {
if(exito){
var i = 1;
content.htmlText += this ["n"] ;
for (i=1; i < this ["n"]; i++) {
content.htmlText += "<br>ID:" + this["id"+ i] + "<br>NOTICIAS:"+ this["titulo"+ i];
}
}else{
trace("no se pudo cargar el php");
}
}
c.sendAndLoad("flashh.php",d,"GET");
}
