Results 1 to 5 of 5

Thread: Human Check

  1. #1
    Join Date
    Jan 2009
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Human Check

    Hi there I have created one or two basic web sites (for others - local charities) by using Front Page but really have limited knowledge about scripting languages. One of my sites has an enquiry form so that visitors can ask a question. This is then emailed to the charity when the visitor presses the submit button. They are now getting lots of spam and want a way to stop it. I have been looking to find a very simple Human Check but have not been able to understand how they work. I thought i would just put a simple "are you human" Yes/No dropdown box or radio button but i dont know how to validate the visitor response so that they can only submit if they answer correctly. I would be grateful for any help........ Thank you .

  2. #2
    Join Date
    Oct 2008
    Location
    Sweden
    Posts
    2,023
    Thanks
    17
    Thanked 319 Times in 318 Posts
    Blog Entries
    3

    Default

    You can use a captchas for this, here is a good site: http://www.captcha.net/

  3. #3
    Join Date
    Jan 2009
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thanks for your reply. I already have an account there and spent all day yesterday looking at Captcha for simple instructions how to put it onto the website and get it working - I need something simple i can understand. I couldnt find it there.

  4. #4
    Join Date
    May 2007
    Location
    Boston,ma
    Posts
    2,127
    Thanks
    173
    Thanked 207 Times in 205 Posts

    Default

    You can do it with php and have the form submit straight threw there. Like at the last line of your form have it be what is the first letter of the alphabet. Then in the php have if ($inputfield == "a") {
    mail("address", subject, message);
    } else
    {
    echo ("You Failed the verify please reverify.");
    }

    Something like this I could give you a better example if you post your form's code or a link to it.

  5. #5
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •