Guest User

Untitled

a guest
May 22nd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?PHP
  2. $file = "userips.txt";
  3.  
  4. $handle = fopen($file, 'r');
  5.  
  6. $content = fread($handle, filesize($file));
  7.  
  8. fclose($handle);
  9.  
  10. $array = explode(',', $content);
  11.  
  12. foreach($array as $ipaddress){
  13. echo $ipaddress . '<br />';
  14. }
  15.  
  16. ?>
Add Comment
Please, Sign In to add comment