Hi Cake people,
I have a problem in setting user status.In particular i have a field
in users table which is called status and i have set it to enum
('active','inactive') default 'active'.now in users/views/
change_status i want to have a select tag to set status as active or
inactive.Here is the code:

<?php
        echo $form->create('User', array('action' => 'change_status'));
        echo $form->input('User.status', array ('type' => 'select','label'=>
'Status','options'=>array(1=>'active',0=>'inactive')));

        echo $form->input('id', array('type'=>'hidden'));
        echo $form->end('Save');
?>

Now in users_controller i want a change_status fanction to edit the
changes.But when i select a choice nothing happen.Can you please help
me ?

My code in controller:

function change_status($id=null){
        $this->User->id = $id;
                if (empty($this->data)) {
                        $this->data = $this->User->read();
                } else {
                        if ($this->User->save($this->data)) {
                        $this->Session->setflash('User status has been 
updated!');
                        $this->redirect('/users');
                        }
                }
        }
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to