Jump to content

Form To Email


Philwn

Recommended Posts

Hi im new to php and could use a little help.

 

I have Created an Order Form on orderform.php which lists product titles, next to the product titles is a drop down box with values 0-10, 0 as default.

 

once submitted the form data passes to send.php which has the following code:

 

<script language="php">
$email = $HTTP_POST_VARS[email];
$mailto = "myemail address";
$mailsubj = "Form submission";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody = "Values submitted from web site form:\n";
while (list ($key, $val) = each ($HTTP_POST_VARS)) { $mailbody .= "$key : $val\n"; }
if (!eregi("\n",$HTTP_POST_VARS[email])) { mail($mailto, $mailsubj, $mailbody, $mailhead); }
</script>

 

This works Fine, Email is recieved with the products and quantities. However i Want it to disclude any product with the value 0 in the drop down box as the E-Mail is Currently 4 pages long.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.