Question:

How can I create contact form by flash with php code ?

by  |  earlier

0 LIKES UnLike

How can I create contact form by flash with php code ?

 Tags:

   Report

3 ANSWERS


  1. have a look @ my flash blog u can find a running example and source file there

    http://flash-workshop.blogspot.com/2008/...

    Anil

    anilkumarnd@gmail.com


  2. WHY us a Flash??? A form is very simple to make with Php.

    Web-design top ten mistake no 3: pointless additions.  Don't put a flash code unless you absolutely need to do so.  It takes much more bandwidth than a form and is unnecessary.

  3. <?php

    if ($_POST['to'], $_POST['subject'], $_POST['message']) {

    mail($_POST['to'], $_POST['subject'], $_POST['message'], "FROM:"."myemail@domain.xx") or die("Failed to send email");

    }

    ?>

    And make sure to pass on the TO, SUBJECT, MESSAGE variables to the page via _POST

Question Stats

Latest activity: earlier.
This question has 3 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.