This is a page of my favourite links
Computer Programs and Other Files
#include ("../PHP_codes/functions.php"); #include ("../PHP_codes/filename.php"); $i=0; $list = preg_split("/\n/i", shell_exec("ls -1 ../programs")); #print_r ($list); while ($list[$i]) { $filename=$list[$i++]; if (!is_dir($filename)){ $size=round((filesize($filename))/(1000*1000)); $size = $size . " MB"; if ($size==0){ $size=round((filesize($filename))/(1000)); $size = $size . " KB"; } } list($name,$extension)=preg_split("/\./i",$filename,2); if (strcmp($extension,'php')){ $name=ucfirst(($name)); $extension=strtolower($extension); print "
$name [$extension] [$size]
"; } } ?>
Click Here to go back to the top of this page
Last modified: 11 July 2020