]> matita.cs.unibo.it Git - logicplayer.git/blob - public_html/printEs.php
server/log ignored
[logicplayer.git] / public_html / printEs.php
1 <?php
2         if ($handle = opendir($DATA['locationEsercizi'])) 
3         {
4                 echo "File:<br/>";
5
6            while (false !== ($file = readdir($handle))) { 
7                    if($file!="." && $file!="..")
8                         echo "$file<br/>";
9            }
10
11            closedir($handle); 
12         }
13 ?>