Jump to content

Recommended Posts

My form mails but with no data. Can anybody spot what I am doing wrong? My html coding (separate program) uses POST as the form action. Here is the php program code:

 

<?php

 

$SendFrom =    "Form Submission <[email protected]>";

$SendTo =      "[email protected]";

$SubjectLine = "Get Involved Form Submission";

$ThanksURL =  "thankyou.htm";  //confirmation page

 

 

      $msg="Values submitted by the user:\n";

      foreach($_POST as $key => $val){

        if (is_array($val)){

            $msg.="Item: $key\n";

            foreach($val as $v){

              $v = stripslashes($v);

              $msg.="  $v\n";

            }

        } else {

            $val = stripslashes($val);

            $msg.="$key: $val\n";

        }

      }

          $Msg.= "\n" . @gethostbyaddr($_SERVER["REMOTE_ADDR"]) . "\n" .

  $_SERVER["HTTP_USER_AGENT"];

  $MsgBody = htmlspecialchars($Msg, ENT_NOQUOTES);  //make safe

 

// Send E-Mail and Direct Browser to Confirmation Page

mail($SendTo, $SubjectLine, $Msg, "From: $SendFrom");

header("Location: $ThanksURL");

 

 

?>

  $msg, $Msg, and $MsgBody are three different variables. You need proof read your code to make sure it is logically doing what you expect (you switched from $msg to $Msg which lost most of the data from the form which was in $msg.)

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.