Guest User

frfrfrf

a guest
Mar 25th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. $collection = Mage::getModel('catalog/product')->getCollection()->addAttributeToSelect('*');
  5. $collection->getSelect()->join('my_designs', 'product_id=entity_id')->where('my_designs.customer_id','1');
  6. $collection->load();
  7. echo "<pre>";
  8. print_r($collection->getData());
  9.  
  10. ?>
Add Comment
Please, Sign In to add comment