Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<?php
$ip=$_SERVER['REMOTE_ADDR'];
$ban_list=file_get_contents('banlist.txt');
if(strpos($banlist,$ip)!==FALSE)
{
exit('Ваш ip:'.$ip.' забанен');
}
$fp=fopen("banlist.txt","a+");
fwrite($fp,$ip." ");
fclose($fp);
echo 'Ваш ip:'.$ip.' забанен';
?>
$ip=$_SERVER['REMOTE_ADDR'];
$ban_list=file_get_contents('banlist.txt');
if(strpos($banlist,$ip)!==FALSE)
{
exit('Ваш ip:'.$ip.' забанен');
}