Code :
- <?
- $flash = " Le Flash de la semaine ";
- $intranet = "via l'intranet";
- $rep = "flash_lrs/";
- $dir = opendir($rep);
- $maxtop = 5;
- function date_file($date) {
- return date("d/m/Y H:i:s",$date);
- }
- function affiche_file($fichier) {
- $extention=strlen(substr($fichier,strrpos($fichier,"." )));
- $extention=substr($fichier,0,strlen($fichier)-$extention);
- return($extention);
- }
- while ($f = readdir($dir)) {
- if (ereg("~","$f" ) {
- }
- else {
- echo "<tr><td>";
- echo "<a href=file://srvnet01/flash_lrs/$f target=_blank>$flash ".affiche_file($f)."</a>";
- echo "<td>".number_format(filesize($rep.$f)/1024,"2",",","" );
- echo " Ko</td>";
- echo "</tr>\n";
- }
- }
- closedir($dir);
- ?>
|