Re: How to make forms in cakephp

2008-12-23 Thread eMarcus
Hi Mona, Well, it would help if you could specify the error a bit more. The form need to be called 'app/views/users/add.ctp'. I don't know if you can make "echo $form->inputs(array('name', 'email', 'password'));" I would rather do: echo $form->input('User.name'); echo $form->input('User.pas

How to make forms in cakephp

2008-12-23 Thread mona
I m new to cake php i want to make form in cakephp and i make the following things class User extends AppModel { var $name = 'User'; var $validate = array( 'name'=>array('rule'=>'notEmpty'), 'email'=>array('rule'=>'email'), 'password'=>array(