A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: weird php form email prob

  1. #1

    weird php form email prob

    I have a form that has 4 fields...
    It used to work liek 2 days ago, but now i moved the movie to a pop up window and it does not send the form info normally, it sends it in html code.
    Why is it sending like this.

    <TEXTFORMAT LEADING=\"2\"><P ALIGN=\"LEFT\"><FONT FACE=\"Verdana\" SIZE=\"15\" COLOR=\"#000000\">webmail</FONT></P></TEXTFORMAT>

    <TEXTFORMAT LEADING=\"2\"><P ALIGN=\"LEFT\"><FONT FACE=\"Verdana\" SIZE=\"15\" COLOR=\"#000000\">webmail</FONT></P></TEXTFORMAT>




    my flash but has:
    on (release) {
    if (name eq "" or subject eq "" or message eq "" or email eq "") {
    stop();
    } else {
    loadVariablesNum("http://www.johnmoats.com/mailer/form.php", 0, "POST");
    gotoAndStop(2);
    }
    }


    my php is:
    <?

    $to = "jmoats@bradley.edu";
    $msg = "$name\n\n";
    $msg .= "$message\n\n";

    mail($to, $subject, $msg, "From: signu.org\nReply-To: $email\n");

    ?>
    zetaphi1025

  2. #2
    Registered User
    Join Date
    Feb 2001
    Posts
    13,041
    Hi,

    you did not - by accident - change the flash text fields to html?

    Musicman

  3. #3
    well that was 2 wasted hours of my night trying to figure out that i did render it as html.

    thanks alot. worked like a charm.
    zetaphi1025

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center