全部。我一直在嘗試整合Google的reCAPTCHA,並且在嘗試echo recaptcha_get_html時似乎失敗了。它出現了一個未定義的函數錯誤。我到處尋找,似乎無法得到直接的答案。我對PHP非常好,並沒有完全理解所有的東西。有人可以解釋我如何找到缺失的功能。所以我的問題是,是否需要回顯此功能?這裏是我的代碼:爲什麼需要回顯「recaptcha_get_html」?
<form class="" action="verify.php" method="post">
<input type="text" name="email" value=" enter email address" onFocus="if(this.value==' enter email address')this.value='';" style="height:18px; width:218px; color: #cccccc; border: 1 solid #000000; background-color: #5e5e5e; font: xx-small Verdana">
<br><br>
<?php
require_once('recaptchalib.php');
$publickey = "// Public Key";
echo recaptcha_get_html($publickey);
?>
<br>
<input type="submit" id="sendform" name='send' value=" send " style="cursor: hand; height:18px; border: 1 solid #000000; background-color:#5e5e5e; color: #cccccc; font: xx-small Verdana; font-weight:bold">
</form>
在此先感謝。
上次我檢查客戶端完全基於JavaScript:https://github.com/google/recaptcha/blob/master/examples/example-captcha.php –