It's actually nothing the user does.. It's something that is done from the Admin Panel from PHPbb forum
I'm using the PHPbb forum to use the user database and where it has the ranks and everything else
And from that they will be set a certain user level. via the admin panel.
So far showing the user name works great.. works with other pages as well via a form post and takes the session user name and posts it with the form..
It's just this for the main page..
So say someone has a rank1 which is the highest rank..
They will see the following
Post public news
Post private news
Edit Info
Rank2 seconds highest
they will see
Post Private News
Edit info
And rank 3 will see
Edit info
for this i'll be using if statements to do it so like
if(user_level == 1);
print editinfo.php
print post.php
} elseif {
print edit.php
}
I think thats correct not sure yet 😉 Still learning