Created
February 19, 2013 18:34
-
-
Save tegansnyder/4988585 to your computer and use it in GitHub Desktop.
Short example of getting customer_id of a Magento customer via email address outside of Magento via direct SQL
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('/site/app/Mage.php'); | |
umask(0); | |
Mage::app(); | |
//setup the direct sql db conn resource | |
$db_conn = Mage::getSingleton('core/resource'); | |
$r_conn = $db_conn->getConnection('core_read'); | |
$email = '[email protected]'; | |
$sql = "SELECT entity_id FROM `customer_entity` WHERE email = '". $email . "' LIMIT 1"; | |
$dat = $r_conn->fetchAll($sql); | |
$customer_id = $dat[0]['entity_id']; | |
echo $customer_id; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment