Thursday, February 26, 2015

Re: how is this saving without a table

How do you know something was saved?

On Thursday, February 26, 2015 at 2:50:02 PM UTC+1, ajt wrote:
In cakephp I have some code which saves data without a table and I have no idea how.
The model,controller show nothing like below it works fine but there is no tablecalled terms

<?php

App::uses('AppController', 'Controller');

/**
 * Subjects Controller
 *
 * @property Subject $Subject
 */
class TermsController extends AppController {


    public function add() {
        if ($this->request->is('post')) {
            $this->Term->create();
            if ($this->Term->save($this->request->data)) {
                $this->Session->setFlash(__('The Term has been saved'), 'flash_success');
                $this->redirect(array('controller' => 'configs', 'action' => 'index'));
            } else {
                $this->Session->setFlash(__('The Term could not be saved. Please, try again.'));
            }
        }
    }


--
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

---
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cake-php+unsubscribe@googlegroups.com.
To post to this group, send email to cake-php@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php.
For more options, visit https://groups.google.com/d/optout.

No comments: