well heres a little code of what i have
<?
if (!empty($POST['name']) || !empty($POST['email']) || !empty($POST['family']) || !empty($POST['address']) || !empty($POST['city']) || !empty($POST['state']) || !empty($POST['zip']) || !empty($POST['message']))
{
$to = "cameron@ingallsphotography.com";
$subject = "Ingalls Photography";
$msg = "Name: " . $name . "\n";
$msg .= "E-mail: " . $email . "\n";
$msg .= "Possible Photo shoot: " . $family . "\n";
$msg .= "Address: " . $address . "\n";
$msg .= "City: " . $city . "\n";
$msg .= "State: " . $state . "\n";
$msg .= "Zip Code: " . $zip . "\n";
$msg .= "Message: " . $message . "\n";
$headers = "From: $email";
mail($to, $subject, $msg, $headers);
echo "<Br><bR><br><B>Thank you for your interest in Ingalls Photography.
Cameron Ingalls has successfully recieved the e-mail and shall reply as soon
as possible. </b><Br><br>";
i'm just very tired and lazy right now and can't be bothered to do lots of reading and testing.. Could you tell me where to add it and how if possible, thanks