Love Fuel?    Donate

FuelPHP Forums

Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
html feildset inside fieldset class
  • hi, how can i group  fields in a fieldset (<fieldset><legend>filelds group</lagend> ..... </fieldset>) tags,  using the Fieldset class!?
  • HarroHarro
    Accepted Answer
    You can just add a second fieldset to the first:

    $parent = Fieldset::forge();
    $child = Fieldset::forge();
    $parent->add($child, 'child');
  • thanks, it works :D

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion