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,
