How to change javascript values to php?

Combine HTML and PHP contact form?

  • Currently I have a HTML contact form that then launches PHP code to send the email. How can I combine the two so I dont need two files? Thanks HTML Have a question? Feel free to contact us using the below form: <p> </p> <form action="scripts/send_email.php" method="post" target="_self"> <p>Your name</p> <p><input type="text" name="cf_name"></p> <p>Your e-mail</p> <p><input type="text" name="cf_email"></p> <p>Subject</p> <p><input type="text" name="cf_subject"></p> <p>Message</p> <p><input type="text" name="cf_message"></p> <p>Who do you want to contact:</p> <p><select name="cf_address" size="1"> <option></option> <option disabled>--Group--</option> <option value="email">  Option</option> <option value="email">  Option</option> <option disabled>--Group--</option> <option value="email">  Option</option> <option disabled>--Group--</option> <option value="email">  Option</option> <option value="email">  Option</option> </select></p> <input type="submit"value="Submit"> <input type="reset" value="Clear"> </form> PHP Needs to have its own file (Change scripts/send_email.php to directory of the file) <?php $field_name = $_POST['cf_name']; $field_email = $_POST['cf_email']; $subject = $_POST['cf_subject']; $field_message = $_POST['cf_message']; $mail_to = $_POST['cf_address']; $body_message = 'From: '.$field_name."\n"; $body_message .= 'E-mail: '.$field_email."\n"; $body_message .= 'Message: '.$field_message; $headers = 'From: '.$cf_email."\r\n"; $headers .= 'Reply-To: '.$cf_email."\r\n"; $mail_status = mail($mail_to, $subject, $body_message, $headers); if ($mail_status) { ?> <script language="javascript" type="text/javascript"> window.location = '../contact.html'; </script> <?php } else { ?> <script language="javascript" type="text/javascript"> window.location = '../contact.html'; </script> <?php } ?>

  • Answer:

    The other answer supplied here is incorrect in so many ways.... Here you go: http://pastebin.com/gUP0jXjk Cheers, Gitlez

Jackson at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

The other answer supplied here is incorrect in so many ways.... Here you go: http://pastebin.com/gUP0jXjk Cheers, Gitlez

Gitlez

Fixed code here - http://snippets.dzone.com/posts/show/15113 You just have to change your form action to something like action="?do=sendemail", and add an isset($_POST['submit']){ } to your php. What this does is it checks if your submit button has been clicked, if it was clicked, it will do the code that is inside of the {}'s Your file should be saved as .php not .html.

Wobbb

To tell you the truth I can't remember hearing that term before. Can you give us any additional information, context? edit: Google says you may be referring to the COGIATI gender test. Please do NOT put much stock in that. The test is flawed because it's heavy dependence on gender stereotypes. The full name for the COGIATI test is: Combined Gender Identity And Transsexuality Inventory Jill or Leo: Do you have a link? I've never heard the term used like that before and would like to know more.

Tina

Fixed code here - http://snippets.dzone.com/posts/show/15113 You just have to change your form action to something like action="?do=sendemail", and add an isset($_POST['submit']){ } to your php. What this does is it checks if your submit button has been clicked, if it was clicked, it will do the code that is inside of the {}'s Your file should be saved as .php not .html.

D1156321

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.