Referring to the Codeigniter user guide at http://codeigniter.com/user_guide/helpers/form_helper.html, I cannot seem to figure out how to set the ‘name’ property of a form using CI’s form helper. Only ‘id’ can be set by passing an array in. Can the ‘name’ of the form be set without passing an array to the form_open() function?
Referring to the Codeigniter user guide at http://codeigniter.com/user_guide/helpers/form_helper.html , I cannot seem to figure
Share
The name attribute for a form is actually deprecated:
Source: W3.org
If you really want to pass it, I fear you have no choice but using the array you want to avoid, as you read in the manual.