I have recently began using FUELPHP. It's great, however I have a few questions.
1 - I don't know how to set a class/id for a table (and rows etc) in a fieldset. I know how to set a class for the entire fieldset: $fieldset = Fieldset::forge('contact', array('form_attributes' => array('class' => 'contact_form'))); , but not the table and rows etc inside it.
2 - I don't know how to reverse the array in an array object (similar to 'array_reverse') retrieved from a db query.
Alternatively, you can pass a config array to Fieldset::forge(), which can be used to override the defaults, and have custom templates per Fieldset object.
What do you mean by "array object"? If you mean a database result object, the short answer is you can't. Add ORDER BY clauses to make sure the result is in the correct order.