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

Popular posts from this blog

xslt - Substring before throwing error -

Google Cloud Bigtable Durability/Availability Guarantees -

c# - Call C++ Native DLL in Managed Code -