I need to modify the value of a (hidden) field while in gform_validation.
How can I do this?
Thanks
I need to modify the value of a (hidden) field while in gform_validation.
How can I do this?
Thanks
Anybody?
Hi idealist,
You should be able to modify it directly in the $_POST.
[php]
$_POST['input_2'] = 'newvalue';
Thanks mate, that works a charm!