Results 1 to 4 of 4

Thread: Creating an email form using PHP from Flash

  1. #1
    Join Date
    Mar 2007
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Creating an email form using PHP from Flash

    Hello,

    I need help! and i knew this would be the best place to come...

    I am doing a website in flash and am having trouble getting the contact form to work.

    I've made my contact page with input fields for name, email and message, and named them t1, t2, and t3

    This is the code I'm working with, and I'm not quite sure I understand it...

    <?
    $subject="from".$_GET['your_name'];
    $headers= "From:".$_GET['your_email']."\n";
    $headers.='Content-type: text/html; charset=iso-8859-1';
    mail($_GET['recipient'], $subject, "
    <html>
    <head>
    <title>Contact letter</title>
    </head>
    <body>

    <br>
    ".$_GET['message']."
    </body>
    </html>" , $headers);
    echo ("Your message was successfully sent!");
    ?>
    <script>
    resizeTo(300, 300)
    //window.close()
    </script>


    can you help?

    Thanks!

  2. #2
    Join Date
    Mar 2007
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    That's the first reason I joined the forum ...

    I am waiting .. for ... some help on this matter ...

    i have found something on a site.. a flash contact form combined with php .. but it did not work for me ...

  3. #3
    Join Date
    Jul 2007
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I was looking for the same thing! I found this page:

    http://www.thegoldenmean.com/techniq...l#projectfiles

    Hope it works out.
    Last edited by ProMaster001; 07-13-2007 at 02:51 PM.

  4. #4
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    Here is a video tutorial (flv format) that will walk you through it, piece by piece:

    Tutorial & FLV Player by Lee Brimelow

Bookmarks

Posting Permissions

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