Currently after my form has passed validation it forwards to an html page.

I would like to have one last step that pulls reCaptcha and when reCaptcha has been passed only then is the registration details of the user sent to my database and user forwarded to what ever page I choose.

Please advise me on the best way to do this thanks.

Here is my javascript and ajax. The submit.php is a file that holds all my validation rules. I think I now have to have a file that holds my captcha and use ajax to get that file or maybe there is some better way. I'm still learning.

$(document).ready(function(){

        $('#fhjoinForm').submit(function(e) {

            register();
            e.preventDefault();

        });

    });


    function register()
    {
        hideshow('loading',1);
        error(0);

        $.ajax({
            type: "POST",
            url: "submit.php",
            data: $('#fhjoinForm').serialize(),
            dataType: "json",
            success: function(msg){

                if(parseInt(msg.status)==1)
                {
                    window.location=msg.txt;
                }
                else if(parseInt(msg.status)==0)
                {
                    error(1,msg.txt);
                }

                hideshow('loading',0);
            }
        });

    }


    function hideshow(el,act)
    {
        if(act) $('#'+el).css('visibility','visible');
        else $('#'+el).css('visibility','hidden');
    }

    function error(act,txt)
    {
        hideshow('error',act);
        if(txt) $('#error').html(txt);
    }
link|improve this question

I would recommend to add captcha on the same form otherwise you will need two server trips - first one for validating form and second one for validating captcha. – VinayC Sep 21 '10 at 5:33
Wouldn't that make my page refresh? I don't want any refreshing until all validation is passed. This will be when user is beibg taken to member area. – LondonGuy Sep 21 '10 at 12:08
feedback

1 Answer

up vote 0 down vote accepted

So there must be an easy way to add reCaotcha as my last step of my sign-up form before it's submitted.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.