Number of registered users: users['total']; ?>
Newest user: users['last']; ?>
Online users:
users['online']; ?>

Content for logged users.'; } else { echo '

Content for visitors / not logged.

'; } // Display /Proccess data according to user rank if(isset($_SESSION['rank']) && $_SESSION['rank']<2) { echo '

Content for users with rank lower than 2.

'; } else if(isset($_SESSION['rank']) && $_SESSION['rank']==2) { echo '

Content for users with rank 2.

'; } else if(isset($_SESSION['rank']) && $_SESSION['rank']>2) { echo '

Data for users with rank higher than 2.

'; } ?>