View file manager1/italy/show.php

File size: 318B
<?php
$dir=opendir(".");
while ($f=readdir($dir))
{
 if ($f=="a.dat" || $f=="b.dat" || $f=="calendar.dat" || $f=="show.php" || $f=="t.dat")
     {
     continue;
     }else{

echo $f; echo '<br>';
$file=file($f);
for ($i=0;$i<count($file);$i++)
    {
    echo $file[$i];  echo '<br>';
    }
	  }
echo '<hr>';
}


?>