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! :)

link|improve this question

feedback

4 Answers

up vote 4 down vote accepted

It is often useful to store the 'last login' time and date for users. If you did that you could simply check if last_login was NULL in your users table and then display your message or whatever.

link|improve this answer
1  
A last_login timestamp is generally more useful than a simple first_login flag, and is no more difficult to implement. – meagar Dec 18 '09 at 18:39
Thanks, again! Your answer was helpful to a beginner! – Kevin Brown Dec 27 '09 at 0:00
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.

link|improve this answer
It's ActiveRecord. – Alix Axel Dec 18 '09 at 17:37
Thanks, I updated the post – Tms Dec 18 '09 at 17:38
feedback

You'll have to store something like that in the database:

username varchar 255
password varchar 255
first_login bool default 1

If first_login is 1, display the information and set first_login to 0

link|improve this answer
feedback

You can store one field in the database, like flagFirstLogin = 1 uppon the registration and after the first login you just change that to 0.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.