Cakephp MySql Query with WHERE -
i have work function:
public function index() { $this->set('tables', $this->table->find('all')); }
but how show column owner = logged user?
you want $this->session->read()
returns current authenticated user:-
$this->table->find( 'all', array( 'conditions' => array('table.user_id' => $this->session->read("auth.user.id")) ) );
Comments
Post a Comment