Search code examples
cakephpform-helpers

cakePHP, form helper, creating a form automatically - how?


Is there a way to get form helper to create the inputs of the form (retrieved from db table) by itself?


Solution

  • The fastest way to create a form:

    echo $form->create();
    echo $form->inputs();
    echo $form->end();