Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?
- $ip="112.222.333.444"; // ip пользователя
- $baza=array( // список ip в файле
- "110.222.333.444",
- "111.222.333.444",
- "112.222.333.444",
- "113.222.333.444",
- "114.222.333.444"
- );
- $true="";
- foreach($baza as $ops)
- {
- $true.=$ops==$ip?"Есть в базе":"";
- }
- $true=empty($true)?"Нет в базе":$true;
- echo $true;
- ?>
Advertisement
Add Comment
Please, Sign In to add comment