![]() |
| |||||||
| |
![]() |
| | Thread Tools |
|
#1
| ||||
| ||||
| Iam looking for the correct name/term for a type of form validator. when i fill out a form on some sites ther is a place where i have to put a sequence of Letters/numbers that is shown in a box that looks KIND of jumbled in different fonts. I would like to know this so i can learn about its use and weather or not its usefull. Any ideas tryed to google it but its like a needle in a hatstack without knowing its correct name. Thanks everyone! |
| |
|
#2
| ||||
| ||||
| It's a Security Code Confirmation They are to keep robots from signing up and spamming the forums. |
|
#3
| ||||
| ||||
| Thanks been bugging me like crazy. ![]() |
|
#4
| ||||
| ||||
| If you are wanting to learn about them you can also google the word captcha |
|
#5
| ||||
| ||||
| Do you know how much thay can slow the webserver down by and Why it would do this. |
|
#6
| ||||
| ||||
| Not sure about that. |
|
#7
| ||||
| ||||
| MMMM im not sure im convinced about this. couldnt spamers just pick out email address from html code (please correct me if im wrong ive only been learning to develop webpages for the past 6 months) is there a better way to protect from spamers. My form already uses php to verify that all information is correct but it dosent help when it comes to spam. Was thinking about putting the captcha before the form but that just seems like a waste of time for the user and possibly no goal conversion. Thanks all! |
|
#8
| ||||
| ||||
| They aren't going to stop human spammers. We can easily figure these out. Once someone or something is signed up to the forum it is up to you and your moderators (if any) to combat the spammers. This stops the robots/automated entities only. A computer can't see what letters or numbers to enter in order to sign up to a forum. The captcha is not as effective as the Security Code Confirmation because a computer can figure out simple math. See this blog entry |
|
#9
| ||||
| ||||
| Great example thanks for the help! ![]() |
|
#10
| ||||
| ||||
Or you could use an existing PHP form that has been tested by someone who knows what they are doing. http://green-beast.com/gbcf-v3/ gets a lot of good things said about it Last edited by dr john : 07-02-2008 at 05:12 PM. |
|
#11
| ||||
| ||||
| YEAH! just added the captcha to my form and is validating the entry SO COOL! i feel like a kid in a candy shop. Thanks everyone!!!!!!!!! |
|
#12
| ||||
| ||||
| Hello again! Ok so last night i may have got alittle bit over excited when i said i have a captcha (working). Im having a little problem with the validation markup. im using php5 and i get a parse error telling me unexpected T_UNSET blah blah.....the usual for me. this is my code: <?php session_start(); if(($_SESSION['security_code'] == $_POST['security_code']) && (!empty($_SESSION['security_code'])) ) { $firstname = $_REQUEST['firstname']; $lastname = $_REQUEST['lastname']; $city = $_REQUEST['city']; $pictue = $_REQUEST['picture']; $email =$_REQUEST['email']; mail( "some email","Feedback Form Results", $message, "From: $email"); header("location:../artist_member/thank_you1.html") unset ($_SESSION['security_code']); } else { header ("location:../artist_member/sorry_error.html") } ?> am i using the wrong php syntax? really appreciate the help. Ben |
|
![]() |
| Thread Tools | |
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Help, I've been spammed by a so called friend! | sisterballistic | Email, VoIP & IM Discussion | 4 | 12-02-2008 12:16 PM |
| I'm making a move called- Hacker | cheesepuff | Off Topic Discussion | 11 | 02-02-2008 06:57 AM |
| Scholastic called me about Harry Potter | dbuske | Off Topic Discussion | 1 | 18-07-2007 04:24 PM |
| has anyone heard of a virus called trojen... | james bond | Virus, Spyware & Security | 3 | 20-03-2007 03:17 PM |
| I think I have a virus/ spyware on my computer called | Getmeoutofhighschool | General Software Chat | 7 | 18-03-2007 01:50 PM |
| Powered by vBulletin® Copyright ©2000 - 2008 Jelsoft Enterprises Ltd. SEO by vBSEO ©2008, Crawlability, Inc. |