Zepo. Posted August 2, 2009 Share Posted August 2, 2009 I am trying to integrate recaptcha with my current script. For some reason it's not passing the $_POST varables and I can't seem to figure out why. The source of the page shows the form in it but it doesn't pass the captcha to the next page while it does for the rest of the form variables. //Actions.... switch($page) { case "register": define( 'TEMP_FILE', 'message' ); $newUser = new NewUser(); $newUser -> Add($_POST['username'], $_POST['password'], $_POST['confirmpass'], $_POST['email'], $_POST['recaptcha_challenge_field'], $_POST['recaptcha_response_field']); break; default: define( 'TEMP_FILE', 'register' ); require_once('./includes/classes/class.recaptcha.php'); $publickey = "6LfKnAcAAAAAAFo5WCEr1z5WTW9WdYOBNTEp6ozg "; $newcapt=recaptcha_get_html($publickey); $tpl->assign("captcha","$newcapt"); break; } Switch case http://completeladders.com/development/v1/user.php = Page; as you can see the form looks right, but for some reason it doesn't pass. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.