我正在尝试使用reCaptcha,并且recaptcha_response_field并未添加到后端的$ _POST数组中-但是我表单中的其余变量都出现了。
HTML代码:
System.Diagnostics.EventLogEntry
脚本:
<form id="mlnwForm" method='post' onSubmit="return validateForm()" action='<?=base_url('ccc/ddd');?>'>
<input type="hidden" id="g_recaptcha_response" name="g_recaptcha_response">
<input type="hidden" id="comp_name" name="comp_name" value="june-2019" />
<fieldset>
<div class="form-row required">
<label for="mlnw_email"><span>Email*</span></label>
<input class="input-text email required" autocomplete="off" id="mlnw_email" type="text" name="mlnw_email" value="<?php echo set_value('mlnw_email'); ?>" maxlength="50" />
</div>
</fieldset>
</form>