Category | CakePHP functions - create - a model function |
Code Examples | In controller: $this->Post->create(); Cake performs saves through the use of the create() and save() model functions. => Initializes the model for writing a new record, loading the default values for those fields that are not defined in $data, and clearing previous validation errors. Especially helpful for saving data in loops. => Rendering |
Test Code | |
Links | |
Remarks | |
Cancel |