Reputation: 645
Is there a way to set zend form details in the application config file (application.ini) in Zend Framework. I am looking for a way to move following details to config
Upvotes: 3
Views: 963
Reputation: 5746
Well you can check this link from the Zend Manual itself. It talks about using ini files to configure a form: Using a Zend_Config Object
You can add various configurations to your ini file and apply them to the form itself.
Upvotes: 0