Creating 'select' listboxes using FormHelper in CakePHP
- by joec
I have two models Category and Point. The associations are defined as:
Category hasMany Point
Point belongsTo Category
I would like, when adding Points to my database, to be able to select the category it belongs to from a <select> box, along with the rest of the form data.
Where would i need to set the category list and how could i do…