Jump to content

How to ban members?


don11

Recommended Posts

I created a field in "b_users" table as "banned" with default value="no". i.e, all members by default are set to "banned"="no". I was testing this code in my some pages to ban member and prevent access to my pages:

$getid="SELECT * from b_users where id='$user_id'";
if($getid[banned]=="yes")
{
  die("<center>You have been banned from posting</center>");
} 
else
{
show page

Above code is banning all members. But i want to show ban message to members who's "banned" field value is set to "yes" only. How to do that?

Link to comment
https://forums.phpfreaks.com/topic/224517-how-to-ban-members/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.