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 [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/cake-php.
For more options, visit https://groups.google.com/d/optout.