Hey Daniweb lovers,
I am using a cake php framework to develop my application. The problem I am facing at the moment is that I am trying to use two different tables (let's call them users and products.) I can select users from the users table. But, I have got a query in my function that is in the controller. It is something like
$query= $this->User->query("SELECT username,prod_id,prod_name FROM users,products;");
$this->set('usernames', $query);
I have also created a model for the products table.. I don't know why it is not working..
Hear from you, folks ...