somehow, its getting to 'test2' in the controller, however, I don't
see the data in the table!  I actually had this working in cake1.1 but
updated to 1.2 changed htmlhelper to formhelper, and now it doesn't
work!  any help appreciated.

Thanks.

database:
CREATE TABLE users
(
id int NOT NULL AUTO_INCREMENT,
/* ... some other fields here */
about_me varchar(255),
PRIMARY KEY (id)
);

model:
class User extends AppModel
{
    var $name = 'User';

    var $validate = array();
}

view:

<? echo $form->create('User', array('action' => '/add')); ?>

<?php echo $form->textarea('User/about_me')?>

<?php echo $form->submit('Add'); ?>

<? //echo $form->end('Add User'); ?>
</form>

controller:
...
        function add() {
                $this->log('in newuser_controller add()');
                $this->User->create();
                if(!empty($this->data)) {
                        $this->log($this->data);
                        $this->log('test1');
                        //If the form data can be validated and saved...
                        if($this->User->save($this->data)) {
                        $this->log('test2');
                        //Set a session flash message and redirect.
                                $this->Session->setFlash("User Saved!");
                                //$this->redirect('newuser/add');
                        }
                }
        }

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to