This is a discussion on Check box question within the PHP Language forums, part of the PHP Programming Forums category; Hi every body, I have a small question regarding check box and mail() forms. I have a mail() form on ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
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 www.s7els7.com |
|
|||
|
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! |
|
|||
|
On Apr 25, 11:04 pm, Rik <luiheidsgoe...@hotmail.com> wrote:
> 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 www.s7els7.com |