Check box question

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • shror

    Check box question

    Hi every body,
    I have a small question regarding check box and mail() forms.

    I have a mail() form on my website and I want to add to it a check box
    that if checked the user get a copy of the data he sent and if not
    check the mail is sent to me only please help me doing this because I
    have tried how to figure it out but I couldnt and the problem is that
    am not a really good php developer am just a beginer.

    Thanks for all your help in advance
    shror


  • Rik

    #2
    Re: Check box question

    shror wrote:
    Hi every body,
    I have a small question regarding check box and mail() forms.
    >
    I have a mail() form on my website and I want to add to it a check box
    that if checked the user get a copy of the data he sent and if not
    check the mail is sent to me only please help me doing this because I
    have tried how to figure it out but I couldnt and the problem is that
    am not a really good php developer am just a beginer.
    An HTML checkbox will be either posted when checked, or not when unchecked.

    So, if it's name is 'copy_to_client ', you could:

    if(isset($_POST['copy_to_client '])){
    //mail the sender
    }

    I'd advise against it though. It makes it far to easy to spam people if
    they enter other adresses.

    --
    Rik Wasmus

    Estimated date being able to walk again: 01-05-2007.
    Less then a week, hurray!

    Comment

    • shror

      #3
      Re: Check box question

      On Apr 25, 11:04 pm, Rik <luiheidsgoe... @hotmail.comwro te:
      shror wrote:
      Hi every body,
      I have a small question regarding check box and mail() forms.
      >
      I have a mail() form on my website and I want to add to it a check box
      that if checked the user get a copy of the data he sent and if not
      check the mail is sent to me only please help me doing this because I
      have tried how to figure it out but I couldnt and the problem is that
      am not a really good php developer am just a beginer.
      >
      An HTML checkbox will be either posted when checked, or not when unchecked.
      >
      So, if it's name is 'copy_to_client ', you could:
      >
      if(isset($_POST['copy_to_client '])){
      //mail the sender
      >
      }
      >
      I'd advise against it though. It makes it far to easy to spam people if
      they enter other adresses.
      >
      --
      Rik Wasmus
      >
      Estimated date being able to walk again: 01-05-2007.
      Less then a week, hurray!
      I agree with you that this could be used to spam people but what could
      be the other solution of this thing I already have started looking for
      a way to use the CAPTCHA security system with using a picture but I
      really dont know how to use it how to insert it to be working with my
      mail() form and I also think that the CAPTCHA is not effective with
      the copy_to_client checkbox so please if anybody know how to solve
      this problem for me I appreciate

      shror


      Comment

      Working...