Просмотр файла javagrab/grab.php

Размер файла: 574B
<?php

$url="http://sleza.org.ru/script/jarFiles.php";

$i="";
$d="";
if (isset($_GET['i'])){$i=$_GET['i'];}
if (isset($_GET['d'])){$d=$_GET['d']."/";}


$file = file($url);
$file = @implode ("", $file);

if ($file)
{

echo "<center>";

$pos1=1;
$pos2=2;


while ($pos1<>0 and $pos2<>0){
if ($pos1==1){$pos1=0;}
if ($pos2==1){$pos2=0;}


$pos2=strpos($file, "<br>", $pos1);
$tmp=substr($file, $pos1, $pos2-$pos1);
$pos1=$pos2+4;

if (substr_count($tmp, "/$i$d")<>0){

//Вывод строки
echo $tmp."<br>";

}
}


echo "</center>";

}
?>