Cakephp use saveAll and specify which models only
问题 Im new to relatively new to cakephp, right now I'm trying to use saveall() and save individual models depending on the role the user chose for the register. Here is my View: <?php echo $this->Form->create('User', array('type' => 'file')); ?> <fieldset> <legend><?php echo __('Add User'); ?></legend> <?php echo $this->Form->file('User.user_image'); echo $this->Form->input('User.name', array( 'label' => 'Nombre')); echo $this->Form->input('User.last_name', array( 'label' => 'Apellidos' )); echo