Skip to content

Instantly share code, notes, and snippets.

@robertbasic
Created November 29, 2010 15:46
Show Gist options
  • Save robertbasic/720097 to your computer and use it in GitHub Desktop.
Save robertbasic/720097 to your computer and use it in GitHub Desktop.
// next
$select->from(
array(
'photos' => $this->_name
),
array(
'photo_id', 'fk_user_id'
)
)
->where('photo_id > ?', $id)
->limit(1);
// prev just switch the where clause photo_id < ?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment