hi i want a banned page so show the reason why you get banned and how long the ban is going to be a page like this http://habin.me/banned so can some one make one to me or something? plase
Printable View
hi i want a banned page so show the reason why you get banned and how long the ban is going to be a page like this http://habin.me/banned so can some one make one to me or something? plase
not like that so i show when your bann gets out and that stuff
Assuming you're using RevCMS:
Paste this on the client page:
Code:<?php
if(mysql_num_rows(mysql_query("SELECT NULL FROM bans WHERE expire > '".time()."' AND (value = '$_SESSION['user']['username']' OR value = '".$_SERVER['REMOTE_ADDR']."')")) > 0){
header('Location: <link to banned page>');
exit();
?>