The following files are available for download.
while(false != ($file = readdir($dir)))
{
if(($file != ".") and ($file != "..") and ($file!="index.php") and (is_dir($file)==false))
{
$sz = filesize($file);// in KB
$units = "B";
if($sz>1000)
{
$sz = $sz/1024;
$units="KB";
}
if($sz>1000)
{
$sz = $sz/1024;
$units="MB";
}
if($sz>1000)
{
$sz = $sz/1024;
$units="GB";
}
$sz = floor($sz*100);$sz=$sz/100;
$dirname=substr($dirname,0,-1);
echo("
");
}
if(($file != ".") and ($file != "..") and (is_dir($file)==true))
{
$dirname=substr($dirname,0,-1);
echo("
");
}
}
?>