I am taking my fields name as associative array in html code in CodeIgniter but am running into trouble when I validate it.
Here is the code I'm using:
View Page
{<input type="text" name="name[name]">
<?php echo form_error('name[name]'); ?>}
Controller
{$this->form_validation->set_rules('name[name]','name','required');}
How might I solve this?