Ver Mensaje Individual
  #1 (permalink)  
Antiguo 26/08/2003, 16:44
JuanC_
 
Fecha de Ingreso: noviembre-2002
Ubicación: Munro, Buenos Aires
Mensajes: 90
Antigüedad: 21 años, 5 meses
Puntos: 1
Pregunta Formulario PHP Flash

bueno, tengo un problema serio con el formulario php que estoy armando, aca les pasteo lo que tengo en el boton de enviar:

on (release) {
if (nombre eq "" or apellido eq "" or empresa eq "" or mail eq "" or consulta eq "") {
stop();
} else {
loadVariablesNum("form.php", 0, "POST");
gotoAndStop(1);
}
}

ahora les pongo lo que tengo en el php.

<?php
$MailTo="[email protected]";
$nowDay=date("m.d.Y");
$nowClock=date("H:i:s");
$FormContent="
El Mensaje se Envio el $nowDay a las $nowClock:\n\n
----------------------------------------------------------------------------\n
Nombre $nombre\n
Apellido: $apellido\n
Empresa: $empresa\n
E-mail: $mail\n
Consulta: $consulta\n

----------------------------------------------------------------------------\n
Subject: $Subject\n
----------------------------------------------------------------------------\n
Mensaje: $Body\n
----------------------------------------------------------------------------\n
";
mail($MailTo, "$Subject (de $nombre $apellido)", $FormContent, "From: $mail");
$signal=1;
echo "signal=$signal";
?>

bueno, hasta aca pareciera que esta todo en orden, pero cuando lleno el formulario y lo mando me llega esto:

El Mensaje se Envio el 08.26.2003 a las 19:09:04:


----------------------------------------------------------------------------

Nombre <P ALIGN=\"LEFT\"><FONT FACE=\"Arial\" SIZE=\"9\" COLOR=\"#000000\"></FONT></P><P ALIGN=\"LEFT\"><FONT FACE=\"Arial\" SIZE=\"9\" COLOR=\"#000000\">tete</FONT></P>

Apellido: <P ALIGN=\"LEFT\"><FONT FACE=\"Arial\" SIZE=\"9\" COLOR=\"#000000\"></FONT></P><P ALIGN=\"LEFT\"><FONT FACE=\"Arial\" SIZE=\"9\" COLOR=\"#000000\">tete</FONT></P>

Empresa: <P ALIGN=\"LEFT\"><FONT FACE=\"Arial\" SIZE=\"9\" COLOR=\"#000000\"></FONT></P><P ALIGN=\"LEFT\"><FONT FACE=\"Arial\" SIZE=\"9\" COLOR=\"#000000\">tete</FONT></P>

E-mail: <P ALIGN=\"LEFT\"><FONT FACE=\"Arial\" SIZE=\"9\" COLOR=\"#000000\"></FONT></P><P ALIGN=\"LEFT\"><FONT FACE=\"Arial\" SIZE=\"9\" COLOR=\"#000000\">tete</FONT></P>

Consulta: <P ALIGN=\"LEFT\"><FONT FACE=\"Arial\" SIZE=\"9\" COLOR=\"#000000\">tetete</FONT></P><P ALIGN=\"LEFT\"><FONT FACE=\"Arial\" SIZE=\"9\" COLOR=\"#000000\">taetadfgasvasvdasdvasvasgvavva asfdg asf asg</FONT></P><P ALIGN=\"LEFT\"><FONT FACE=\"Arial\" SIZE=\"9\" COLOR=\"#000000\">asg</FONT></P><P ALIGN=\"LEFT\"><FONT FACE=\"Arial\" SIZE=\"9\" COLOR=\"#000000\">asg</FONT></P><P ALIGN=\"LEFT\"><FONT FACE=\"Arial\" SIZE=\"9\" COLOR=\"#000000\">ags</FONT></P><P ALIGN=\"LEFT\"><FONT FACE=\"Arial\" SIZE=\"9\" COLOR=\"#000000\">ga</FONT></P><P ALIGN=\"LEFT\"><FONT FACE=\"Arial\" SIZE=\"9\" COLOR=\"#000000\">fgasfg</FONT></P>


----------------------------------------------------------------------------

Subject:

----------------------------------------------------------------------------

Mensaje:

----------------------------------------------------------------------------


si alguien me da una mano se lo agradeceria muchisimo!

Última edición por JuanC_; 26/08/2003 a las 17:01