0
是否可以使用「die」標記鏈接到錯誤站點,而不是默認顯示的文本?當Recaptcha錯誤時顯示錯誤頁面
require_once('recaptchalib.php');
$privatekey = "*******";
$resp = recaptcha_check_answer ($privatekey,
$_SERVER["REMOTE_ADDR"],
$_POST["recaptcha_challenge_field"],
$_POST["recaptcha_response_field"]);
if (!$resp->is_valid) {
die ("The reCAPTCHA wasn't entered correctly. Go back and try it again." .
"(reCAPTCHA said: " . $resp->error . ")");
}
像:
die ('error.php');
當然,這是行不通的。但我無法弄清楚如何使用模板標籤。