View file index.php

File size: 419B
<?php
error_reporting(0);
$fl="list.txt";
$fls=file($fl);
$cou=count($fls);
include("head.php");
echo'<div class="top"><b>Free downloads</b></div><img src="/shadow.gif" alt"-"/>';
echo'<div class="left">';
for($li=0;$li<$cou;$li++)
{
$df=$fls[$li];
$df=explode('|',$df);
echo'<img src="b.gif" alt=""/><a href="'.$df[0].'"><b>'.$df[1].'</b></a><br>';
}
echo'</div><img src="/shadow.gif" alt""/>';
include("foot.php");
?>