what do I need to do to delete the captcha? When I created the form I checked "no" for captcha but it was included anyway.
I tried deleting the code on the form but on submission I'm getting invalid captcha string.
As an alternative to a picture I'd rather have a question such as "are you human" or similar.
Thanks.
In the process.php change this line:
if( ($_SESSION['security_code']==$_POST['security_code']) && (!empty($_POST['security_code'])) ) {
to this:
if(1){
thanks it worked.
Log in to post a comment.
what do I need to do to delete the captcha? When I created the form I checked "no" for captcha but it was included anyway.
I tried deleting the code on the form but on submission I'm getting invalid captcha string.
As an alternative to a picture I'd rather have a question such as "are you human" or similar.
Thanks.
In the process.php change this line:
if( ($_SESSION['security_code']==$_POST['security_code']) && (!empty($_POST['security_code'])) ) {
to this:
if(1){
thanks it worked.