joinx Posted April 26, 2008 Share Posted April 26, 2008 How to retrieve customer id from a session and store it to a database..? Link to comment https://forums.phpfreaks.com/topic/102999-customer-id/ Share on other sites More sharing options...
mrdamien Posted April 26, 2008 Share Posted April 26, 2008 $id = (int)$_SESSION['customer_id']; $results = mysql_query("INSERT INTO tbl (customerID) VALUES ({$id})"); But.. you'll probably have to be more specific than that. Link to comment https://forums.phpfreaks.com/topic/102999-customer-id/#findComment-527627 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.