raider
имеем
imagehost
имеется report
через report участился спам
задача
запрятать кнопку Submite REPORT за капчу
использовалась
https://developers.google.com/recaptcha/docs/php
в verify.php сейчас вынесена submite repost - но сука, показывается в новом окне (verify.php)
<?php
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) {
// What happens when the CAPTCHA was entered incorrectly
die ("The reCAPTCHA wasn't entered correctly. Go back and try it again." .
"(reCAPTCHA said: " . $resp->error . ")");
} else {
?>
// Your code here to handle a successful verification
<input type="submit" name=done VALUE="Send Report"> <p>* required</p>
<?
}
?>
пробовал споатать в verify.php все сабмитформу
все хорошо - но не берет ID report image
открывает verify.php
форма естьь только вместо id image пишет в таблице {img_id}
HELP