Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/05/2008, 11:07
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: Ayuda con readdir()

Modifica tu while:
Código PHP:
<?php
while ($Archivo=readdir($ContenidoDir)) {
if( 
$Archivo == "." || $Archivo == ".." ) continue;
?>
Saludos.