i have a form for adding people object ,i want to add as many people without saving people in database,after clicking add people form submit button,the same form should appear without saving the form data to database,instead it should save to the session.please explain in detail if possible with the help of a example to do this, i have not found any tutorial which explains cakephp session in detail.
Share
Sessions are simple. You include the component, write something to the session and read it from the session later. That’s it. You can store in it almost anything you want, including arrays.
See http://book.cakephp.org/view/1311/Methods