syscall.org
Docs » teaching:programmazione_a_eventi_parallela_e_concorrente_ss2012

Programmazione a eventi, parallela e concorrente

Slides 2012

<php> $datadir = './teaching/tPEC2012/PDF'; $baseurl = “http://syscall.org/”; if ($handle = opendir($datadir)) {

 while (false !== ($file = readdir($handle)))
    {
        if ($file != "." && $file != "..")
  {
        	$thelist .= '<a href="'.$baseurl.$datadir.'/'.$file.'">'.$file.'</a><br/>';
        }
     }
closedir($handle);
}
echo $thelist;

</php>

Previous Next

syscall.org

Table of Contents