<?php
$log = fopen("ip.txt", "r") or exit("Dosya Açılamadı!");
while(!feof($log))
  {
  echo fgets($log). "<br />";
  }
fclose($log);
?>