On my site (Cake 2.x), users can add favorites. When the user is logged in, it works like a charm.
If the user is not logged in, it saves the favorites to a session-array.
I'm now struggeling, on how to save the session-favorites to the db after a user logs in.
For now, my session array looks like this:
$sessiondata = array('item_id' => $id, 'title' => $fitem['Item']['title'],'slug' => $fitem['Item']['slug']);
For my database, I only need the $id and the User.id (after logged in). How can i save the entries to the db after login()?
My join-table contains the fields: item_id and user_id
Thanks in advance