<snip>
> in my php verification
echo "<pre>";
print_r($_POST);
echo "</pre>";
> $privatekey = "My Private Key";
> $resp = recaptcha_check_answer ($privatekey,
> $_SERVER["REMOTE_ADDR"],
> $_POST["recaptcha_challenge_field"],
> $_POST["recaptcha_response_field"]);
>
> if (!$resp->is_valid) {
> $registermsg[] = $core->message("The reCAPTCHA wasn't entered
> correctly. Go back and try it again." .
> "(reCAPTCHA said: " . $resp->error . ")", "error");
> }
--
PJH
This indicates that the reCAPTCHA isn't within your <form></form>, and
is also the reason you're getting incorrect-sol all the time (since
you're submitting blanks, not what the user has entered.)
> --
> You received this message because you are subscribed to the Google Groups "reCAPTCHA" group.
> To post to this group, send email to reca...@googlegroups.com.
> To unsubscribe from this group, send email to recaptcha+...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/recaptcha?hl=en.
>
>
--
PJH
Don't put form tags inside the table tags.