thanks for reading. My problem is that I have multiple tabs, each containing a form, which I was hoping each to also contain a recaptcha. The problem is only the first recaptcha is displayed. You can see what I mean on this page.
Another solution, which I am not too sure how to do, could be to have 1 recaptcha used by each form as only one form can be submitted at a time but the form would need to be split to have the recaptcha before the submit button.
Any help on either solution would be much appreciated (and also stop me from pulling my hair out). Thank you for your time.
Sorry if I did not give enough detail. Here is the end of one of the forms. They are all pretty much the same for this point.
<div class="row-textarea"><div class = "label">Review: </div>
<textarea id="msg" name="content" required></textarea>
</div>
<div class="captcha">
<?php
require_once('HIDDEN/recaptchalib.php');
$publickey = "HIDDEN";
echo recaptcha_get_html($publickey);
?>
</div>
<button class ="button" type="submit">Submit</button>
</form>
What would be ideal is to remove the captcha div from the form but still have it before the submit button.
Just thinking, the submit button is the same for all the forms too. Would there be a way for the tabs to change all of the form before the captcha and leave everything after the same to complete the form. That gives me something to ponder.