Results 1 to 2 of 2

Thread: Flash contact form problem.

  1. #1
    Join Date
    Nov 2008
    Posts
    16
    Thanks
    8
    Thanked 0 Times in 0 Posts

    Default Flash contact form problem.

    Hello,
    I just tried to set up to my flash website contact form and came up the problem. All thing is good even when fill all boxes and pressing to submit it says my email was sent but when i check it i found nothing, i was trying several mails but nothing.. Maybe any idea? i post my script what i use. i was tryed CHMOD 0755 but no results
    Flash content reset
    PHP Code:
    on (rollOver) {
        
    gotoAndPlay("t1");
    }
    on (rollOut,releaseOutside) {
        
    gotoAndPlay("t2");
    }
    on (release) {
        
    _parent.t1 "your name:";
        
    _parent.t2 "your e-mail:";
        
    _parent.t3 "message:";

    Flash content Submit
    PHP Code:
    on (rollOver) {
        
    gotoAndPlay("t1");
    }
    on (rollOutreleaseOutside) {
        
    gotoAndPlay("t2");
    }
    on (release) {
        
    _parent.getURL("contact.php","_blank","GET");
        
    _parent.t1 "your name:";
        
    _parent.t2 "your e-mail:";
        
    _parent.t3 "message:";

    And contact.php
    PHP Code:
    <?php

        $your_name 
    $_GET['t1'];
        
    $your_email $_GET['t2'];
        
    $your_message $_GET['t3'];
     
       
       
        
    $recipient_email "roman@prolink.ee";
        
        
    $subject "from " $your_email;
        
    $headers "From: " $your_name " <" $your_email ">\n";
        
    $headers .= 'Content-type: text/html; charset=iso-8859-1';
       
        
    $content "<html><head><title>Contact letter</title></head><body><br>";
        
    $content .= "your name: <b>" $your_name "</b><br>";
        
    $content .= "your e-mail: <b>" $your_email "</b><br><hr><br>";
        
    $content .= $your_message;
        
    $content .= "<br></body></html>";

        
    mail($recipient,$subject,$content,$headers);
    ?>
    <html>
        <body bgcolor="#282E2C">
            <div align="center" style="margin-top:60px;color:#FFFFFF;font-size:11px;font-family:Tahoma;font-weight:bold">
                Your message was sent. Thank you.
            </div>
        </body>
    </html>
    <script>resizeTo(300, 300)</script>
    any idea.? thanks in advance
    Last edited by frog; 04-24-2009 at 12:25 PM.

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

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
  •