Let's say I have a form and I am using gform_validation
and the name advanced field(because I do) that is outputing
<input type="text" tabindex="1" value="" id="input_4_2.3" name="input_2.3">
<input type="text" tabindex="2" value="" id="input_4_2.6" name="input_2.6">
With my other custom validation i'm able to use $_POST[input_4_#];
but for some reason $_POST[input_4_2.3];
dosen't work.
Really all I want to do is not allow people to use numbers as their name. This should be a simple regex I just need to figure out how to get the Value of input 4_2.6 and 4_2.3.
Thanks