在网站中使用 reCAPTCHA PHP 插件的最佳简单方法

Best Simple method for using reCAPTCHA PHP Plugin in website

我已经使用 google api 和下面的代码在我的网站上获取验证码,但无法在 php 网站上获取。 我使用了下面的代码

<html><body>
<?
require_once ("recaptchalib.php");
// get a key at http://www.google.com/recaptcha/mailhide/apikey
$mailhide_pubkey = '';
$mailhide_privkey = '';
?>
The Mailhide encoding of example@example.com is
<?
echo recaptcha_mailhide_html ($mailhide_pubkey,
                              $mailhide_privkey,
                              "example@example.com");
?>.
<br>
The url for the email is:
<?
echo recaptcha_mailhide_url ($mailhide_pubkey,
                             $mailhide_privkey,
                             "example@example.com");
?>
<br>
</body></html>

请告诉我在 Php 网站上获取验证码的简单和最佳步骤。

不要按照这个方法,有点难管理。

如果您只是想集成 Google New reCaptcha 那么只需 register here

并生成密钥并在您的表单中进行管理。您可以关注下方link了解更多详情。

Google reCaptcha Using PHP | Only 2 Step Integration