Skip to content

Instantly share code, notes, and snippets.

@TiuTalk
Created July 17, 2011 15:33
Show Gist options
  • Select an option

  • Save TiuTalk/1087691 to your computer and use it in GitHub Desktop.

Select an option

Save TiuTalk/1087691 to your computer and use it in GitHub Desktop.
<?php
$email = 'contato@thiagobelem.net';
$params = array(
'conditions' => array(
'Usuario.email' => $email,
'Usuario.idade >=' => 18
),
'order' => array('Usuario.nome')
);
$noticias = $this->Usuario->find('first', $params);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment