Subversion Repositories List
Repositories - click on links to view with ViewCVS
1000000 ) {
$res[0] /= 1000000;
$res[0] = number_format($res[0], 2);
$foldersize = "$res[0] GB";
} else {
$res[0] /= 1000;
$res[0] = number_format($res[0], 2);
$foldersize = "$res[0] MB";
}
// print all the stuff to the webpage
echo "- ";
echo " $file size: $foldersize ";
echo "
";
}
}
// close the directory
closedir($dh);
?>