I need a way to tell if it's a user's first time to log in--so I can display relevant information to that user about what they need to do.
How can this be achieved? I'm at a loss here and examples would be appreciated! :)
|
I need a way to tell if it's a user's first time to log in--so I can display relevant information to that user about what they need to do. How can this be achieved? I'm at a loss here and examples would be appreciated! :)
| ||||
|
feedback
|
|
It is often useful to store the 'last login' time and date for users. If you did that you could simply check if | |||||||
feedback
|
|
this isn't really a codeigniter specific question. You would want to interact with a database that stores user information. A "user" table could have a field in it that gets set to "true" (or some value) when a user logs in for the first time (which you could subsequently query). Codeigniter does make it easier for you to interact with a database - just do a search (or look in their excellent documentation) for Codeigniter ActiveRecord. Good luck. | |||||
|
feedback
|
|
You'll have to store something like that in the database:
If first_login is 1, display the information and set first_login to 0 | |||
|
feedback
|
|
You can store one field in the database, like | |||
|
feedback
|