4 include('menulist.html');
5 include('static-configuration');
8 <h1> Contents of CCAN <?=$argv[1]?> </h1>
11 <table align="center" width="80%" border="0" cellpadding="3" cellspacing="1">
15 while (false !== ($entry = $d->read())) {
16 if ($entry[0] != '.') {
17 array_push($files, $entry);
23 foreach ($files as $file) {
24 $size = round((filesize($argv[1]."/".$file) + 1023) / 1024);
27 <td><a href="<?=$argv[2]."/".$file?>"><?=$file?> (<?=$size?>K)</td>