Welcome Guest, Not a member yet? Register   Sign In
Form Validation with Array for fieldname
#1

[eluser]jrlooney[/eluser]
According to this, my form and validation should work
http://ellislab.com/codeigniter/user-gui...ysasfields

My form has form objects such as :

Code:
<input type="text" size="50" class="text" name="setting[client_name]" value="">

And my validate function includes :

Code:
$rules['setting[client_name]']    = "required";

$fields['setting[client_name]']    = 'Business Name';

But it errors even when a valid value exists in the post. How can I troubleshoot to insure that the fieldname being posted matches the fieldname being set in the validation rules/fields?
#2

[eluser]daniel ispas[/eluser]
Hi,

As far as i know you can't define validation rules that match the value of the field to a given string using the validation library included in CI. You could use a simple if statement or modify the validation class / create your own class.
#3

[eluser]jrlooney[/eluser]
sorry that makes no sense to me. I've been using CI for years now w/o issue. not sure why the validation config is not matching up to post values




Theme © iAndrew 2016 - Forum software by © MyBB