Reputation: 4251
session_start();
I create an entry in the database and the user can edit it online..
Now, the user has closed the browser. And tomorrow he opens it and goes to the same site.
Is it possible to retain the same session id as before so that he can edit the same data, rather than having to goto the beginning ?
Upvotes: 0
Views: 88
Reputation: 570
A solution that is often used, in this situation, is to :
This way :
Upvotes: 1