<html>
<body>
<form method="post" action="contact.php">
<?php require_once('recaptchalib.php');
$publickey = "6Ld72voSAAAAADku3vUoC712Zo8jUmjHJS8N77Ym"; // you got this from the signup page
echo recaptcha_get_html($publickey);
?>
</form>
</body>
</html>
答案 0 :(得分:0)
我知道这是一个老问题。但回答是否可以帮助某人。
如果您的验证码使用其他服务器,请尝试将其更改为以下内容。
define("RECAPTCHA_API_SERVER", "http://www.google.com/recaptcha/api");
define("RECAPTCHA_API_SECURE_SERVER", "https://www.google.com/recaptcha/api");
define("RECAPTCHA_VERIFY_SERVER", "www.google.com");
它为我解决了Captcha Display问题:)