Guest Posted May 27, 2006 Posted May 27, 2006 I am creating an module that I need to get the currently logged in users customer_id for. I cannot seem to figure this out at all. Can someone please tell me how to show it on a page using the php echo command so that I can see what's going on> Any help would be greatly appreciated.
Guest Posted May 27, 2006 Posted May 27, 2006 if ( tep_session_is_registered('customer_id') ){ echo 'Customer ID = ' . (int)$customer_id; }
Guest Posted May 28, 2006 Posted May 28, 2006 if ( tep_session_is_registered('customer_id') ){ echo 'Customer ID = ' . (int)$customer_id; } THank you so much. You have no idea how much that messed with my head trying to figure it out.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.