products
- <?php
- class Product extends AppModel
- {
- var $name = "Product";
- var $belongsTo ...
this is the products model
- <?php
- class Holiday extends AppModel
- {
- var $name = 'Holiday';
- var $hasMany = &#...
These are the models for holiday and product
- <?php
- class ProductsController extends AppController
- {
- var $name = 'Products'; /...
Products controller
