hast du das schon gestern?
http://ip-to-country.webhosting.info/node/view/6
Druckbare Version
hast du das schon gestern?
http://ip-to-country.webhosting.info/node/view/6
hmm, habs grad noch mal eingespielt, mal sehn, was der betroffene User sagt.. :)
funzt prima :) lag scheinbar daran.. danke für den Hinweis!
und...
schöne ruhige Tage euch allen! :)
ich steh total auf der leitung.. :( wie mach ich das bei mehreren Usern?
einfach mit beistrich??
so??
PHP-Code:
if ($_SESSION['uid'] != 1,2)
{
#Automatische Sperre
}
Entweder so:
oder bspw. wenns mehr als 4 werden:PHP-Code:
if ($_SESSION['uid'] != 1 || $_SESSION['uid'] != 2 || ..... )
{
#Automatische Sperre
}
PHP-Code:
$notallowed = array(1,2,3,4,5,6,7,8,9,.....);
if ( in_array($_SESSION['uid'],$notallowed))
{
#Automatische Sperre
}