Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new in php and I an making an application on iPhone that has a username and password for each user, and users are able to register. I would like to know if there are a lot of users, how can I check which user is logged in ?

When the user logged in their information will be displayed.

I am currently using

if ($id == 1)
{
   //command
}
if ($id == 2)
{
   //command
}
else
   //command

Is there a possible way to check which user is logged in without having to do the if else statement?

Thanks,

share|improve this question
Why do you need to know which user logged in? – strmstn Nov 2 '12 at 8:31
@strmstn Because their information will be displayed not other user's, like instagram or Facebook – tnylee Nov 2 '12 at 8:37
Then you should probably use the ID to load the appropriate information from a database – strmstn Nov 2 '12 at 8:38
@strmstn That is exactly what I asked = = – tnylee Nov 2 '12 at 9:01

1 Answer

up vote 0 down vote accepted

I suggest you to keep last user action time in database. Then select users, which did last action, for example, in last 10 minutes and track them as online users.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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