I'm starting now with CakePHP, and I'd like to know how to get the value of a specific field.
For example, I have the name and email fields. How do I get the value of the field name?
PS: I know you have the method $this->data
, but it takes all fields.
My form looks like this:
echo $this->Form->create('Usuario', array('action' => 'get'));
echo $this->Form->input('usuario');
echo $this->Form->input('email');
echo $this->Form->input('senha', array('type' => 'password'));
echo $this->Form->input('ativo');
echo $this->Form->end('Salvar');