beginners php problem

Associate
Joined
1 Nov 2004
Posts
139
hi, i have created a form with 3 different input forms, each having a varible to their own. so far it takes an email address, name, and message. then once you push submit it sends to my email address. Problem i have now is i want to format the email with home address and input text areas. this is my php code i am using.



<?php
/***************************************************\
* PHP 4.1.0+ version of email script. For more
* information on the mail() function for PHP, see
* http://www.php.net/manual/en/function.mail.php
\***************************************************/


// First, set up some variables to serve you in
// getting an email. This includes the email this is
// sent to (yours) and what the subject of this email
// should be. It's a good idea to choose your own
// subject instead of allowing the user to. This will
// help prevent spam filters from snatching this email
// out from under your nose when something unusual is put.

$sendTo = "[email protected]";
$subject = "Juice Doctor Drink Request";

// variables are sent to this PHP page through
// the POST method. $_POST is a global associative array
// of variables passed through this method. From that, we
// can get the values sent to this page from Flash and
// assign them to appropriate variables which can be used
// in the PHP mail() function.


// header information not including sendTo and Subject
// these all go in one variable. First, include From:
$headers = "From: " . $_POST["firstName"] ." ". $_POST["lastname"] . "<" . $_POST["email"] .">\r\n";
// next include a replyto
$headers .= "Reply-To: " . $_POST["email"] . "\r\n";
// often email servers won't allow emails to be sent to
// domains other than their own. The return path here will
// often lift that restriction so, for instance, you could send
// email to a hotmail account. (hosting provider settings may vary)
// technically bounced email is supposed to go to the return-path email
$headers .= "Return-path: " . $_POST["email"];

// now we can add the content of the message to a body variable
$message = $_POST["message"];


// once the variables have been defined, they can be included
// in the mail function call which will send you an email
mail($sendTo, $subject, $message, $headers);

?>


if i add an extra text field into my flash document how do I make the php file register it and send in the email?

im not very good with php at all so be gentle lol

Nick
 
you need to add it onto the the Message. If you each the $_post['message'] you can see what it contains and what and where you need to add the other fields.
 
Gman said:
you need to add it onto the the Message. If you echo the $_post['message'] you can see what it contains and what and where you need to add the other fields.

sorry for being picky, just to make sure theres no confusion.

(Changed 'each' to 'echo')

As has been said, if you echo variable then you will be able to see exactly what it contains at that point.
 
Back
Top Bottom