Is there a way to get form helper to create the inputs of the form (retrieved from db table) by itself?
2 Answers
The fastest way to create a form:
echo $form->create();
echo $form->inputs();
echo $form->end();
The fastest way to create a form:
echo $form->create();
echo $form->inputs();
echo $form->end();