Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a $_POST index defined but get the error-message that it's not defined.

Here's the code:

 if (isset($_POST['submit']) AND ($_POST['userid']) AND ($_POST['firstname']) AND ($_POST['lastname']) AND ($_POST['address']) AND ($_POST['ZIP']) AND ($_POST['phonenumber']) AND ($_POST['mail']) AND ($_POST['group']))
       {
        $result = $this->sendEmail(
           $_POST['userid'], 'mail@mymail.com', 'mail@mymail.com', $_POST['firstname'], $_POST['lastname'], $_POST['address'], $_POST['ZIP'], $_POST['phonenumber'], $_POST['mail'], $_POST['group']
        );
share|improve this question
1  
Which index is not defined? – Dr. Dan Jan 2 at 8:51
2  
what is the exact error message? – Mahan Jan 2 at 8:52
Apply isset() on each $_POST from your if. – j0k Jan 2 at 8:54
Please be specific! , which of the above parameter is undefined, try by printing $_POST array and check whether all elements you have given in the if are coming or not. – sandip Jan 2 at 8:55
the $userid is undefined. The rest works. I applied also isset on each $_POST but then the function doesn't send the email and returns no error. – Christian Dabrowski Jan 2 at 9:07
show 1 more comment

closed as too localized by N.B., j0k, Álvaro G. Vicario, cryptic ツ, SztupY Jan 2 at 12:03

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

4 Answers

Apply isset() on each $_POST inside your if:

if (isset($_POST['submit']) AND 
    isset($_POST['userid']) AND
    isset($_POST['firstname']) AND
    isset($_POST['lastname']) AND
    isset($_POST['address']) AND
    isset($_POST['ZIP']) AND
    isset($_POST['phonenumber']) AND
    isset($_POST['mail']) AND
    isset($_POST['group']))
{
  $result = $this->sendEmail(
    $_POST['userid'],
    'mail@mymail.com',
    'mail@mymail.com',
    $_POST['firstname'],
    $_POST['lastname'],
    $_POST['address'],
    $_POST['ZIP'],
    $_POST['phonenumber'],
    $_POST['mail'],
    $_POST['group']
);
share|improve this answer

You can write like this-

 if (isset($_POST['submit']) AND 
        isset($_POST['userid']) AND $_POST['userid'] != "" AND 
        isset($_POST['firstname']) AND $_POST['firstname'] != "" AND 
        isset($_POST['lastname']) AND $_POST['lastname']!= "" AND 
        isset($_POST['lastname']) AND $_POST['lastname']!= "" AND 
        isset($_POST['address']) AND $_POST['address'] != "" AND 
        isset($_POST['ZIP']) AND $_POST['ZIP'] != "" AND 
        isset($_POST['phonenumber']) AND $_POST['phonenumber'] != "" AND 
        isset($_POST['mail']) AND $_POST['mail'] != "" AND 
        isset($_POST['group']) AND $_POST['group'] != "")
       {
        $result = $this->sendEmail(
           $_POST['userid'], 'mail@mymail.com', 'mail@mymail.com', $_POST['firstname'], $_POST['lastname'], $_POST['address'], $_POST['ZIP'], $_POST['phonenumber'], $_POST['mail'], $_POST['group']
        );
share|improve this answer
Hi Suresh, I tried your suggestion, but also here without success :( – Christian Dabrowski Jan 2 at 9:17

First off, I recommend checking on the html itself, I assume that the method is set to POST since the rest are working, but double check to be safe! Then, another big mistake is that you screwed up when typing the name field on an input. check all names on the html to be sure they're spelled correctly. Also, make sure you have all your closing tags and opening tags, as well as opening/closing quotes.

Also don't forget to add the isset() to all the things above. Also you could create a better function like,

function checkSet($var){
       if(isset($var) && $var != ""){
            return $var;
       }else{
            return false;
       }
}

this will check if it's and empty string, and if it's defined. Very useful. You can also use it to trim by doing return trim($var) if you fancy.

share|improve this answer

You can use like this also.

if (isset($_POST['submit']) && isset($_POST['userid']) && isset($_POST['firstname']) && isset($_POST['lastname']) && isset($_POST['address']) && isset($_POST['ZIP']) && isset($_POST['phonenumber']) && isset($_POST['mail']) && isset($_POST['group']))

           {
               $result = $this->sendEmail(
               $_POST['userid'], 'mail@mymail.com', 'mail@mymail.com', $_POST['firstname'], $_POST['lastname'], $_POST['address'], $_POST['ZIP'], $_POST['phonenumber'], $_POST['mail'], $_POST['group']
            );
          }
share|improve this answer
If I manipulate the form except the button, I will pass this script and occur a lot of bugs. You need to check all the posts – Bondye Jan 2 at 9:54

Not the answer you're looking for? Browse other questions tagged or ask your own question.