Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/09/2005, 14:42
Avatar de ADIÓS_ADRIANA
ADIÓS_ADRIANA
 
Fecha de Ingreso: septiembre-2005
Mensajes: 263
Antigüedad: 18 años, 7 meses
Puntos: 0
Ya, gracias y otra pregunta.

Ok, ya lo he logrado.

Se puede hacer para mostar la Fecha del Archivo y el tamaño en KB ???


Código PHP:
<?
$total
=0;
$handle opendir("./");
while ((
$file readdir($handle))!==false) {
  if(
is_dir($file)){
   if(
$file != "." && $file != ".."){
?>
  <tr>
  <td align="center" bgcolor="FFFFFF"><a href="<?= $file;?>"><?php echo ucwords($file)?></a></strong></td>
  </tr>
  <?php

     
}
  }
}
closedir($handle);
$handle opendir("./");
while ((
$file readdir($handle))!==false
  {  
  if(
is_file($file))
  {
  
$total++; 
  if(
$file != "." && $file != ".."){?>
  <tr>
  <td align="center" bgcolor="FFFFFF"><a href="<?= $file?>"><?php echo ucwords($file?></a><br></strong></td>
  </tr>
  <?php
     
}
  }
}
closedir($handle);
?> 
<? echo "Total Files:".$total?>