太多的嘗試後reCapatcha添加到我的聯繫表格 我想幫助 這是我的聯繫方式的PHP代碼:如何添加谷歌的reCAPTCHA在此代碼
<?
$name = $_POST[name];
$email = $_POST[email];
$type = $_POST[type];
$message = $_POST[message];
if ($name == "") {
die('name null');
}
if ($type == "" || $email == "" || $message == "") {
die("not null");
}
$myemail = "[email protected]";
$s = "$name";
$body = "<b>Message from Client</b> <br><br> Name: <b>$name</b><br> Package: <b>$type</b><br> E-mail: <b>$email</b><br> Message: <b>$message</b>";
$headers = 'From: '.$email."\r\n".'Content-Type: text/html; charset=utf-8'."\r\n";
mail($myemail, $s, $body, $headers);
header('Content-Type: application/json');
echo json_encode(array('response' => 'success'));
?>
請我怎麼可以在這裏添加的ReCaptcha?!
不要只說你已經嘗試過,請告訴我們你的工作。我們會很樂意幫助您試用您的產品,而不是期望我們爲您修改額外功能的代碼。 –
你在開玩笑嗎?這是你的聯繫方式嗎? ?我無法看到任何文本框 –
@NanaPartykar這是php聯繫人文件:) –