]> matita.cs.unibo.it Git - logicplayer.git/blob - Server/webApp/printEs.php
6c4b6e8213205fd046f7ea0b2b3810b33d2ceeff
[logicplayer.git] / Server / webApp / printEs.php
1 <?php
2         if ($handle = opendir('/var/www/html/esercizi')) 
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 ?>