As per your direction, i have used this code in model:
class contact extends AppModel
{
var $name = 'Contact';
var $table = false;
}
and this code in controller:
class ContactsController extends AppController
{
var $name = 'Contacts';
var $components = array('RequestHandler');
var $helpers = array('Html', 'Form', 'Javascript', 'Validation');
//var $scaffold;
function index()
{
if (!empty($this->data['Contact']))
{
//code for mailing
$msg = "Successful";
}
}
}
Still it is giving this error:
"Missing Database Table
Error: Database table contacts for model Contact was not found."
What is wrong in my code?
On Mar 11, 11:05 pm, mscdex <[email protected]> wrote:
> On Mar 10, 7:32 am, Walther <[email protected]> wrote:
>
> > Just add in your model:
>
> > var $table = false;
>
> Close, it's actually $useTable.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---