Skip to content

Instantly share code, notes, and snippets.

Created January 7, 2013 18:54
Show Gist options
  • Save anonymous/4477437 to your computer and use it in GitHub Desktop.
Save anonymous/4477437 to your computer and use it in GitHub Desktop.
$results = Mage::getModel('xyz/abc')->getCollection();
$results->addFieldToSelect('name');
$results->addFieldToSelect('keywords');
$results->addOrder('name','ASC');
$results->setPageSize(5);
$results->getSelect()->where("keywords like '%foo%' or additional_keywords like '%bar%'");
$results->load();
echo json_encode($results->toArray());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment