Ver Mensaje Individual
  #3 (permalink)  
Antiguo 15/01/2006, 11:57
derinium
 
Fecha de Ingreso: diciembre-2005
Mensajes: 16
Antigüedad: 18 años, 4 meses
Puntos: 0
A ver si te sirve este :

<?php
$dir = opendir('intro');
while($file = readdir($dir)) {

if(($file != '.') && ($file != '..')) {
$fichero[$d]=$file;
$d++;

}
}

sort ($fichero);
reset ($fichero);

?>

<font color="#FFFFFFF"> <strong> </strong></font>
<tr>
<?php
while (list ($clave, $valor) = each ($fichero)) {
?>

<td height="20" bgcolor=104D7B> <div align="left"><strong><a href="<?php echo '/Torrents/musica/'.$valor; ?>">
<?php echo $valor; ?>

</a> </strong></div></td>
</tr>
<?php
}

?>


Un saludo