Created
July 27, 2015 14:44
-
-
Save jissereitsma/7e653be530a279c1d15c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once 'app/Mage.php'; | |
Mage::app(); | |
$collection = Mage::getModel('facebooksignup/facebooksignup') | |
->getCollection() | |
->addFieldToFilter('customer_id',$user_id) | |
->limit(1); //////line 19 is here | |
foreach ($collection as $data) { | |
print_r($data); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment